SPC q q
- quitSPC w /
- split window verticallySPC w
- - split window horizontallySPC 1
- switch to window 1SPC 2
- switch to window 2SPC w d
- delete current windowSPC TAB
- switch to previous bufferSPC b b
- switch buffers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function F = funm_randomized(A,fun) | |
%FUNM_RANDOMIZED Evaluate general matrix function using | |
% randomized approximate diagonalization method of Davies (2007). | |
tol = 8*eps(A(1,1)); % Tolerance for single or double precision A. | |
E = randn(size(A)); | |
[V,D] = eig(A + (tol*norm(A,'fro')/norm(E,'fro'))*E); | |
F = V*diag(fun(diag(D)))/V; |