نتایج جستجو برای: left singular vectors

تعداد نتایج: 411414  

Let $M_R$ be a module with $S=End(M_R)$. We call a submodule $K$ of $M_R$ annihilator-small if $K+T=M$, $T$ a submodule of $M_R$, implies that $ell_S(T)=0$, where $ell_S$ indicates the left annihilator of $T$ over $S$. The sum $A_R(M)$ of all such submodules of $M_R$ contains the Jacobson radical $Rad(M)$ and the left singular submodule $Z_S(M)$. If $M_R$ is cyclic, then $A_R(M)$ is the unique ...

Journal: :Digital Signal Processing 2012
Hing-Cheung So Frankie K. W. Chan Weize Sun

The problem of single-tone frequency estimation for a discrete-time real sinusoid in white Gaussian noise is addressed. We first show that the frequency information is embedded in the principal singular vectors of a matrix which stores the observed data with no repeated entry. The technique of weighted least squares is then utilized for finding the frequency from the singular vectors. It is pro...

2004
Beatriz Gato-Rivera

In 1998 the Adapted Ordering Method was developed for the representation theory of the superconformal algebras. This method, which proves to be very powerful, can be applied to most algebras and superalgebras, however. It allows: to determine maximal dimensions for a given type of singular vector space, to identify all singular vectors by only a few coefficients, to spot subsingular vectors and...

Journal: :Briefings in functional genomics 2012
Martin McDonald Desmond J Higham J Keith Vass

Spectral methods, which use information relating to eigenvectors, singular vectors and generalized singular vectors, help us to visualize and summarize sets of pairwise interactions. In this work, we motivate and discuss the use of spectral methods by taking a matrix computation view and applying concepts from applied linear algebra. We show that this unified approach is sufficiently flexible t...

2005
Wenyuan Liao Adrian Sandu

The aim of this paper is to address computational aspects of the total energy singular vector analysis of atmospheric chemical transport models. We discuss the symmetry of the tangent-linear/adjoint operator for stiff systems. Results for a 3D simulation with real data reveal that the total energy singular vectors depend on the target domain, simulation window, chemical reactions, and meteorolo...

2001
Erick Dupuis Evangelos Papadopoulos Vincent Hayward

This paper presents a novel approach to compute the rank-deficiency locus of non-square Jacobian matrices. This algorithm is based on the computation of the singular vectors associated to zero singular values of the Jacobian. Examples are provided to illustrate the application of the algorithm. Results are shown for a four degree-of-freedom and a seven degree-of-freedom manipulator.

2007
Jie Chen Yousef Saad

This paper discusses an efficient technique for computing filtered matrix-vector (mat-vec) products by exploiting the Lanczos algorithm. The goal of the proposed method, which is the same as that of the truncated singular value decomposition (SVD), is to preserve the quality of the resulting mat-vec product in major singular directions of the matrix. Unlike the SVD-based techniques, the propose...

Journal: :SIAM J. Matrix Analysis Applications 2015
Rongrong Wang

We perform a non-asymptotic analysis on the singular vector distribution under Gaussian noise. In particular, we provide sufficient conditions on a matrix for its first few singular vectors to have near normal distribution. Our result can be used to facilitate the error analysis in linear dimension reduction.

Journal: :CoRR 2006
Lek-Heng Lim

We propose a theory of eigenvalues, eigenvectors, singular values, and singular vectors for tensors based on a constrained variational approach much like the Rayleigh quotient for symmetric matrix eigenvalues. These notions are particularly useful in generalizing certain areas where the spectral theory of matrices has traditionally played an important role. For illustration, we will discuss a m...

Journal: :CoRR 2011
Zhouchen Lin

This technical report introduces some software packages for partial SVD computation, including optimized PROPACK, modified PROPACK for computing singular values above a threshold and the corresponding singular vectors, and block Lanczos with warm start (BLWS). The current version is preliminary. The details will be enriched soon.

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->