Update Spanish translation
[gnumeric.git] / src / tools / random-generator-cor.h
blob178b2aa369d9995c1ce3fffb71b0d7c3f04e2bcd
1 #ifndef GNUMERIC_RANDOM_GENERATOR_COR_H
2 #define GNUMERIC_RANDOM_GENERATOR_COR_H
4 #include <gnumeric.h>
5 #include <numbers.h>
6 #include <tools/dao.h>
7 #include <tools/tools.h>
9 typedef enum {
10 random_gen_cor_type_cov = 0,
11 random_gen_cor_type_cholesky,
12 } random_gen_cor_type_t;
14 typedef struct {
15 WorkbookControl *wbc;
16 GnmValue *matrix;
17 random_gen_cor_type_t matrix_type;
18 gint count;
19 gint variables;
20 } tools_data_random_cor_t;
22 gboolean tool_random_cor_engine (GOCmdContext *gcc, data_analysis_output_t *dao,
23 gpointer specs,
24 analysis_tool_engine_t selector,
25 gpointer result);
27 #endif