Файл:Largenumbers.svg

Матеріал з Вікіпедії — вільної енциклопедії.
Перейти до навігації Перейти до пошуку

Повна роздільність(SVG-файл, номінально 600 × 480 пікселів, розмір файлу: 25 КБ)

Візуалізувати це зображення у .
Wikimedia Commons logo Відомості про цей файл містяться на Вікісховищі — централізованому сховищі вільних файлів мультимедіа для використання у проектах Фонду Вікімедіа.

Опис файлу

 
W3C-validity not checked.
 
Це векторне зображення було створено з допомогою Gnuplot.
Опис
Català: Una il·lustració de la llei dels grans nombres, semblant a File:LLN_Die_Rolls.gif però utilitzant el format svg en comptes de gif. Això utilitza dades diferents i, per tant, sembla diferent. El codi font es troba a la secció següent. El codi està sota la mateixa "llicència" que l'obra en si.
English: An illustration of the w:law of large numbers, similar to File:LLN_Die_Rolls.gif but using the svg format instead of gif. This uses different data from that and hence it looks different. Source code is in the section below. The code is under the same "license" as the work itself.
Час створення (UTC)
Джерело Власна робота
Автор NYKevin
Інші версії
Other related versions:File:LLN_Die_Rolls.gif
Перекласти цей файл

Цей SVG-файл містить вкладений текст, який може бути легко перекладений Вашою мовою за допомогою інструменту SVG Translate або будь-якого редактора SVG. Дізнайтесь більше про переклад SVG-файлів.

Цей файл перекладається за допомогою елементів SVG <switch>. Усі переклади зберігаються в цьому ж файлі! Дізнайтесь більше.

Щоб додати цей файл Вашою мовою (якщо доступно), скористайтесь параметром lang із відповідним кодом мови, напр., [[File:Largenumbers.svg|lang=uk]] для україномовної версії.

Щоб перекласти цей файл Вашою мовою, Ви можете скористатися інструментом SVG Translate. Або ж Ви можете завантажити файл на свій комп'ютер, додати свій переклад у зручній для Вас програмі, і завантажте оновлену версію під тією ж назвою. Якщо Ви не впевнені, як це зробити, допомогу зможете знайти у Графічній лабораторії.

Source code

Note that you will need to insert some paths. I've tried to make it obvious where to do so.

This code is all in the public domain (the cc0 waiver applies to it)

The code (in Java) which generated the data:

import java.io.*;
public class Main {
    public static void main(String[] args) {
        PrintStream output=null;
        try{
            output=new PrintStream("");//FIXME Insert a suitable path in the quote marks
        }catch(FileNotFoundException e){
            throw new RuntimeException(e);
        }
        //int diceValues[] = {0,0,0,0,0,0};//this variable may be uncommented and used for debugging
        double average=0;
        double total=0;
        output.println("#count average");//makes a header for the data; may be safely removed
        Random rnd=new Random(4124484382302655524l);
        //seed selected by trial and error
        for(int i=1;i<=1000;i++){
            int rand=rnd.nextInt(6);//now holds a random int from 0 to 5
            //diceValues[rand]++;//uncomment for debugging
            rand++;//convert to 1-indexed
            total+=rand;
            average=total/i;
            output.println(i+" "+(average));
        }
        //System.out.println(average);
    }

}

The gnuplot code:

set terminal svg
set output "OUTPUT PATH HERE"
set title "average dice value against number of rolls"
set xlabel "trials"
set ylabel "mean value"
plot [] [1:6] "PATH FROM JAVA CODE HERE" title "average" with lines, 3.5 title "y=3.5" with lines
#it is recommended that you copy and paste this code into a .plt file and run it in batch mode:
#If you must run this interactively, be sure to type "exit" or ^D (control-D) at the end,
#or gnuplot will leave off the </svg> closing tag.

MATLAB/Octave Source code

% Specify how many trials you want to run:
num_trials = 1000;

% Now grab all the dice rolls:
trials = randi(6, [1 num_trials]);

% Plot the results:
figure(1);

% Cumulative sum of the trial results divided by the index gives the
% average:
plot(cumsum(trials)./(1:num_trials), 'r-');

% Let's put a reference line at 3.5 just for fun (make the color a darker
% green as well):
hold on;
plot([1 num_trials], [3.5 3.5], 'color', [0 0.5 0]);

% Make it look pretty:
title('average dice value against number of rolls');
xlabel('trials');
ylabel('mean value');
legend('average', 'y=3.5');
axis([0 num_trials 1 6]);


Ліцензування

Creative Commons CC-Zero Цей файл доступний на умовах Creative Commons CC0 1.0 Universal Public Domain Dedication.
Особа, що пов'язала роботу з даною дією, передала роботу у суспільне надбання шляхом відмови від усіх своїх прав на роботу по всьому світу по закону про авторське право, включаючи всі пов'язані і суміжні права, в тій мірі, що допускається законом.

Ви можете копіювати, змінювати, розповсюджувати і виконувати роботу, навіть на комерційній основі, не питаючи дозволу.

Анотації
InfoField
Це зображення має анотації: Переглянути анотації на Вікісховищі

Підписи

Додайте однорядкове пояснення, що саме репрезентує цей файл

Об'єкти, показані на цьому файлі

зображує

Історія файлу

Клацніть на дату/час, щоб переглянути, як тоді виглядав файл.

Дата/часМініатюраРозмір об'єктаКористувачКоментар
поточний21:28, 31 січня 2024Мініатюра для версії від 21:28, 31 січня 2024600 × 480 (25 КБ)ManlleusFile uploaded using svgtranslate tool (https://svgtranslate.toolforge.org/). Added translation for ca.
02:53, 3 лютого 2010Мініатюра для версії від 02:53, 3 лютого 2010600 × 480 (22 КБ)NYKevinIn the interest of replicability, this one was generated using a known PRNG seed value. Will update Java source. Also, this one has axis labels!
23:53, 31 січня 2010Мініатюра для версії від 23:53, 31 січня 2010600 × 480 (21 КБ)NYKevinBetter version, with better Java code (more precise). Will update source soon.
23:35, 31 січня 2010Мініатюра для версії від 23:35, 31 січня 2010600 × 480 (21 КБ)NYKevinI mixed up x and y in the legend, will update gnuplot source code in a moment (already checked for svg closing tag).
23:08, 31 січня 2010Мініатюра для версії від 23:08, 31 січня 2010600 × 480 (21 КБ)NYKevinApparently gnuplot forgot the <svg> closing tag?
23:06, 31 січня 2010Нема мініатюри (21 КБ)NYKevinTrying again... looks like the last one had a problem?
23:04, 31 січня 2010Нема мініатюри (21 КБ)NYKevin{{Information |Description={{en|1=An illustration of the w:law of large numbers, similar to File:LLN_Die_Rolls.gif but using the svg format instead of gif. This uses different data from that and hence it looks different. I will include source c

Нема сторінок, що використовують цей файл.

Глобальне використання файлу

Цей файл використовують такі інші вікі:

Метадані