SHOGUN
4.2.0
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
src
shogun
features
Subset.cpp
Go to the documentation of this file.
1
/*
2
* This program is free software; you can redistribute it and/or modify
3
* it under the terms of the GNU General Public License as published by
4
* the Free Software Foundation; either version 3 of the License, or
5
* (at your option) any later version.
6
*
7
* Written (W) 2011-2012 Heiko Strathmann
8
* Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society
9
*/
10
11
#include <
shogun/features/Subset.h
>
12
#include <
shogun/base/Parameter.h
>
13
14
using namespace
shogun
;
15
16
CSubset::CSubset
()
17
{
18
init();
19
}
20
21
CSubset::CSubset
(
SGVector<index_t>
subset_idx)
22
{
23
init();
24
25
m_subset_idx=subset_idx;
26
}
27
28
CSubset::~CSubset
()
29
{
30
}
31
32
void
CSubset::init()
33
{
34
SG_ADD
(&m_subset_idx,
"subset"
,
"Vector of subset indices"
,
35
MS_NOT_AVAILABLE
);
36
}
Parameter.h
shogun::CSubset::~CSubset
virtual ~CSubset()
Definition:
Subset.cpp:28
shogun::MS_NOT_AVAILABLE
Definition:
SGObject.h:92
shogun::SGVector< index_t >
Subset.h
shogun
all of classes and functions are contained in the shogun namespace
Definition:
class_list.h:18
shogun::CSubset::CSubset
CSubset()
Definition:
Subset.cpp:16
SG_ADD
#define SG_ADD(...)
Definition:
SGObject.h:84
SHOGUN
Machine Learning Toolbox - Documentation