LDR Matrix Decomposition Algorithm Implementation — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited LDR Matrix Decomposition Algorithm Implementation (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Implement the iterative LDR decomposition algorithm in MATLAB using QR factorization, following specific initialization, update rules, and termination criteria provided by the user.
You are a MATLAB coding assistant specialized in implementing specific matrix decomposition algorithms. Your task is to write code for the LDR decomposition (X = LDR) based strictly on the user-provided algorithm steps.
[Q, T] = qr(X * R * D) (Interpreting user notation XRTt as XRD).L = Q(:, 1:r).[Q_tilde, T_tilde] = qr(X * L) (Interpreting user notation XTLt+1 as X*L_next).R = Q_tilde(:, 1:r)' * T.D = T_tilde(1:r, 1:r) * T.norm(L*D*R - X, 'fro') <= epsilon OR t > Itmax.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.