User talk:Oyz

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Welcome, newcomer!

Here are some useful tips to ease you into the Wikipedia experience:


Also, here are some odds and ends that I find useful from time to time:

Feel free to ask me anything the links and talk pages don't answer. You can most easily reach me by posting on my talk page.

You can sign your name on any page by typing 4 tildes, likes this: ~~~~.

Best of luck, and have fun!

[[User:ClockworkSoul|User:ClockworkSoul/sig]] 05:37, 1 Dec 2004 (UTC)

Request for edit summary[edit]

When editing an article on Wikipedia there is a small field labelled "Edit summary" under the main edit-box. It looks like this:

Edit summary text box

The text written here will appear on the Recent changes page, in the page revision history, on the diff page, and in the watchlists of users who are watching that article. See m:Help:Edit summary for full information on this feature.

When you leave the edit summary blank, some of your edits could be mistaken for vandalism and may be reverted, so please always briefly summarize your edits, especially when you are making subtle but important changes, like changing dates or numbers. Thank you.

Oleg Alexandrov (talk) 17:08, 7 April 2006 (UTC)[reply]


some notes[edit]

Complex-conjugate multiplications with complex-swap[edit]


Efficient Implementation for Complex-Conjugate Multiplications with Complex-Swap

Coexistence of complex and complex-conjugate multiplications

abstract[edit]

background and summary[edit]

descriptions[edit]

embodiments[edit]

claims[edit]



Householder transformation[edit]


  • It implies is not full-rank. It contradicts with .
  • Therefore,
  • Since or can not be Hermitian matrices, the failure of the generalization is proved.

The case of one-rank modification is the only possible one for the reflection with any desired hyperplane.

  • But multiple-rank reflection transform can be used for finding the basis of the null space!

Order-recursive calculation of SVD via column-wise augmentation[edit]


Low-latency SVD

applications to mimo detector, steering matrix gain ...

introduction[edit]

* motivation
  * real-time or massive data application: small processing resource or high data volume.
  * column- or row-wise data insertion: cache structure or memory limitation.
  * need to update inovative column information...
* enabling ideas
  * rank-one update formula: adding new column
  * solving secular equation
  * bi-digonalization for numerical stability

approach[edit]

  • order-recursive formula:
  • consider the SVD of A,,n,,is available: {{{#!latex
$$
\mathbf A_n = \mathbf U_n \mathbf \Sigma_n \mathbf V_n^*
$$

}}}

* uninary matrices can be used to obtain an almost diagonalized matrix: {{{#!latex
$$
\mathbf U_n^* \ \mathbf A_{n+1} 
\begin{pmatrix}
\mathbf V_n & \mathbf 0 \\
\mathbf 0^* & 1
\end{pmatrix}
=
\begin{pmatrix}
\mathbf \Sigma_n[1:n,1:n] &  \mathbf d_{n+1}[1:n] \\
\mathbf 0_{(m-n)\times n} &  \mathbf d_{n+1}[n+1:m] \\
\end{pmatrix}
$$
where $\mathbf d_{n+1} = \mathbf U_n^* \ \mathbf  c_{n+1}$.

}}}

* Using Householder transformation, the upper-triangular form can be obtained (tall matrix assumed.): {{{#!latex
$$
\begin{pmatrix}
\mathbf I_n & \mathbf O \\
\mathbf O   & \mathbf H_{m-n}
\end{pmatrix}
\begin{pmatrix}
\mathbf \Sigma_n[1:n,1:n] &  \mathbf d_{n+1}[1:n] \\
\mathbf 0_{(m-n)\times n} &  \mathbf d_{n+1}[n+1:m] \\
\end{pmatrix}
=
\begin{pmatrix}
\mathbf \Sigma_n[1:n,1:n] &  \mathbf d_{n+1}[1:n] \\
\mathbf 0_{n}^* &  f_{n+1} \\
\mathbf 0_{(m-n-1)\times n} &  \mathbf 0_{m-n-1} \\
\end{pmatrix}
$$
where $\mathbf d_{n+1} = \mathbf U_n^* \ \mathbf  c_{n+1}$.

}}}

* The almost diagonal matrix can be diagonalized by means of the previous approaches.
* Among them, the secular equation solving is the best for rank-one update: 
  * it leads to finding simple zeros of polynomials. 
  * linear interplation/iterations are enough.

solving secular equation[edit]

  • Summary:
  1. move zero sigmas right-most: column-swap
  2. move up zero d's: column-and-row swap
  3. make a square part by householder transforming residual d.
  4. apply secular equation for the square part of dimension r-q+1.
  5. merge diagonal parts and unitary matrices: singular values are not ordered for calculation speed.
  6. sort the diagonal
  • re-visit formula:

where is rank of . Note that may include zeros.

  • more swapping rows and columns for zero singular values and diagonal parts.
  1. move zero sigmas right-most: column-swap {{{#!latex
$$
\mathbf U_n^* \ \mathbf A_{n+1}
\begin{pmatrix}
\mathbf V_n & \mathbf 0 \\
\mathbf 0^* & 1
\end{pmatrix}
\mathbf P_{\mathbf\Sigma_n}
=
\begin{pmatrix}
\mathbf \Sigma_n[1:r,1:r]    &  \mathbf d_{n+1}[1:r]   & \mathbf O_{r\times(n-r)}\\
\mathbf O_{(n-r)\times r}   &  \mathbf d_{n+1}[r+1:n] & \mathbf O_{n-r}        \\
\mathbf O_{(m-n)\times r}    & \mathbf d_{n+1}[n+1:m]  & \mathbf O_{(m-n)\times(n-r)} \\
\end{pmatrix}
$$
where $\mathbf P_{\mathbf \Sigma_n}$ is a proper permutation matrix.

}}}

  1. move up zero d's: column-and-row swap

where is a proper permutation matrix s.t. the non-zero elements of form a new vector .

  1. make a square part by householder transforming residual d. {{{#!latex
\begin{*align}
\ &
\begin{pmatrix}
\mathbf I_r & \mathbf O \\
\mathbf O   & \mathbf H_{m-r}
\end{pmatrix}
\mathbf P_{\mathbf d_{n+1}}^*
\mathbf U_n^* \ \mathbf A_{n+1}
\begin{pmatrix}
\mathbf V_n & \mathbf 0 \\
\mathbf 0^* & 1
\end{pmatrix}
\mathbf P_{\mathbf \Sigma_n}
\mathbf P_{\mathbf d_{n+1}}
\\
&=
\begin{pmatrix}
\mathbf \Sigma_{n,0}      & \mathbf O_{q\times(r-q)}   &  \mathbf 0_q                & \mathbf O_{q\times(n-r)}\\
\mathbf O_{(r-q)\times q}  & \mathbf \Sigma_{n,1}    &  \mathbf f_{n+1}[q+1:r]     & \mathbf O_{(r-q)\times(n-r)}\\
\mathbf 0_{q}^*           &  \mathbf 0_{r-q}^*}   &  -\mathbf f_{n+1}[r+1] e^{j\angle \mathbf d_{n+1}[r+1]} & \mathbf 0_{n-r}^*        \\
\mathbf O_{(m-r-1)\times q} &  \mathbf O_{(m-r-1)\times(r-q)}    & \mathbf 0_{m-r-1}  & \mathbf O_{(m-r-1)\times(n-r)} \\
\end{pmatrix}
\end{*align}
\\
where $\mathbf f_{n+1}[r+1]=||\mathbf d_{n+1}[r+1:m]||$.

}}}

  1. apply secular equation for the square part of dimension r-q+1. {{{#!latex
$$
\begin{pmatrix}
\mathbf \Sigma_{n,1}    &  \mathbf f_{n+1}[q+1:r] \\
\mathbf 0_{r-q}^*}      &  \mathbf f_{n+1}[r+1]   \\
\end{pmatrix}
=
\mathbf U_{n+\tfrac{1}{2}} \mathbf \Sigma_{n+\tfrac{1}{2}} \mathbf V_{n+\tfrac{1}{2}}^*
$$

}}}

     Note that the coefficients of the secular equation will be non-zero. It leads to easy non-generic soluation.
  1. merge diagonal parts and unitary matrices: singular values are not ordered for calculation speed.

where the unordered diagonal matrix is

and the unitary matrices are calculated by multiplying the intermediate unitary matrices:

and

  1. sort the diagonal

example[edit]

* mx2 case
  * formula: {{{#!latex
$$
\mathbf A_{2} =
\begin{pmatrix}
\mathbf a_1 & \mathbf  c_{2} \\
\end{pmatrix}
$$

}}}

  * trivial SVD of a,,1,,: {{{#!latex
$$
\mathbf a_1 = \mathbf u_1 \cdot \sigma_1 \cdot 1
$$

}}}

  * almost digonalization: {{{#!latex
$$
\mathbf U_n^* \ \mathbf A_{2} 
\begin{pmatrix}
          1 & 0 \\
          0 & 1
\end{pmatrix}
=
\begin{pmatrix}
\mathbf \sigma_1 &  d_{1} \\
\mathbf 0_{m-1}        &  \mathbf d[2:m] 
\end{pmatrix}
$$
where $d_{1} = \mathbf u_1^* \ \mathbf  c_{2}$ and 

$\mathbf d[2:m] = \mathbf U_1[2:m]^* \ \mathbf c_{2}$. }}}

  * upper-triangular form is good for numerical stability and compact calculation as well:
* mx3 case
* mx4 case

You are invited to join Stanford's WikiProject![edit]

View of Hoover Tower from Main Quad.

As a current or past contributor to a related article, I thought I'd let you know about WikiProject Stanford University, a collaborative effort to improve Wikipedia's coverage of Stanford University. If you would like to participate, you can visit the project page, where you can join the project and see a list of open tasks and related articles. Thanks!

ralphamale (talk) 22:02, 24 January 2012 (UTC)[reply]

Hi,
You appear to be eligible to vote in the current Arbitration Committee election. The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to enact binding solutions for disputes between editors, primarily related to serious behavioural issues that the community has been unable to resolve. This includes the ability to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail. If you wish to participate, you are welcome to review the candidates' statements and submit your choices on the voting page. For the Election committee, MediaWiki message delivery (talk) 12:50, 23 November 2015 (UTC)[reply]

ArbCom Elections 2016: Voting now open![edit]

Hello, Oyz. Voting in the 2016 Arbitration Committee elections is open from Monday, 00:00, 21 November through Sunday, 23:59, 4 December to all unblocked users who have registered an account before Wednesday, 00:00, 28 October 2016 and have made at least 150 mainspace edits before Sunday, 00:00, 1 November 2016.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2016 election, please review the candidates' statements and submit your choices on the voting page. Mdann52 (talk) 22:08, 21 November 2016 (UTC)[reply]

ArbCom 2017 election voter message[edit]

Hello, Oyz. Voting in the 2017 Arbitration Committee elections is now open until 23.59 on Sunday, 10 December. All users who registered an account before Saturday, 28 October 2017, made at least 150 mainspace edits before Wednesday, 1 November 2017 and are not currently blocked are eligible to vote. Users with alternate accounts may only vote once.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2017 election, please review the candidates and submit your choices on the voting page. MediaWiki message delivery (talk) 18:42, 3 December 2017 (UTC)[reply]

ArbCom 2018 election voter message[edit]

Hello, Oyz. Voting in the 2018 Arbitration Committee elections is now open until 23.59 on Sunday, 3 December. All users who registered an account before Sunday, 28 October 2018, made at least 150 mainspace edits before Thursday, 1 November 2018 and are not currently blocked are eligible to vote. Users with alternate accounts may only vote once.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2018 election, please review the candidates and submit your choices on the voting page. MediaWiki message delivery (talk) 18:42, 19 November 2018 (UTC)[reply]

ArbCom 2019 election voter message[edit]

Hello! Voting in the 2019 Arbitration Committee elections is now open until 23:59 on Monday, 2 December 2019. All eligible users are allowed to vote. Users with alternate accounts may only vote once.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2019 election, please review the candidates and submit your choices on the voting page. If you no longer wish to receive these messages, you may add {{NoACEMM}} to your user talk page. MediaWiki message delivery (talk) 00:04, 19 November 2019 (UTC)[reply]

ArbCom 2020 Elections voter message[edit]

Hello! Voting in the 2020 Arbitration Committee elections is now open until 23:59 (UTC) on Monday, 7 December 2020. All eligible users are allowed to vote. Users with alternate accounts may only vote once.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2020 election, please review the candidates and submit your choices on the voting page. If you no longer wish to receive these messages, you may add {{NoACEMM}} to your user talk page. MediaWiki message delivery (talk) 01:18, 24 November 2020 (UTC)[reply]

ArbCom 2023 Elections voter message[edit]

Hello! Voting in the 2023 Arbitration Committee elections is now open until 23:59 (UTC) on Monday, 11 December 2023. All eligible users are allowed to vote. Users with alternate accounts may only vote once.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2023 election, please review the candidates and submit your choices on the voting page. If you no longer wish to receive these messages, you may add {{NoACEMM}} to your user talk page. MediaWiki message delivery (talk) 00:21, 28 November 2023 (UTC)[reply]