User:Orderud

From Wikipedia, the free encyclopedia

Contents

[edit] Fredrik Orderud

Ph.D. student in computer science at NTNU. My primary focus on Wikipedia is adding technical content.

Wikibooks
Wikibooks has a book on the topic of

Writing resources:


[edit] Wikipedia growth script

Image:Wikipedia en growth.png

% Matlab script for plotting Wikipedia growth
% Data source: http://en.wikipedia.org/wiki/Wikipedia:Size_of_Wikipedia

data = importdata('wikipedia_size.txt', ' ', 0);
t = datenum(data.textdata','yyyy-mm-dd');
t = t - min(t);    % start counting days at zero
t = 2001 + t./365; % first sample was taken in jan 2001

% regression plot corresponding to 100% increase every year
semilogy(t(1:160), 2.5e4*2.^(t(1:160)-2001), 'r'); hold on

% plot actual size statistics
semilogy(t, data.data);

title 'Wikipedia growth (english ed.)';
xlabel 'Year'
ylabel 'Article count'
legend('100% yearly increase line', ...
       'Actual article count');
hold off;

[edit] Category contributions

[edit] Wikipedia contributions

[edit] Estimation theory

[edit] Computer vision

[edit] Computer graphics

[edit] Signal processing

  • Total rewrite of Pulse-doppler radar to present the underlying principles, formulas, as well as clearifying that it is NOT based on the doppler effect.
  • Wrote autocorrelation technique article, which is used to estimate the dominating frequency in a signal.

[edit] Numerical computing

[edit] Computer software

[edit] Interesting articles

In other languages