Learn R Programming

sideChannelAttack (version 1.0-6)

filter.MAX: filter.MAX

Description

The filter.MAX function returns the maximum values of a physical measure.

Usage

filter.MAX(nbreVarX_,...)

Arguments

nbreVarX_
The number of variables which represents each physical measures after the reduction.
...
Currently ignored.

Value

The filter.MAX function returns an object which can be used with the predict function to reduce each physical measure. This physical measure can be the same or another one than contained in $X$.The value of this function is an object of class filter.MAX, which is a list with the following components:
nbreVarX
number of component to get after the reduction of a physical measure.

Details

The filter.MAX function is the feature selection MAX. It converts a set of physical measures to another one with less components.

Examples

Run this code

#data collection
data(powerC)
traces = powerC[,-301]
key = powerC[,301]

#model creation
attack=filter.MAX(nbreVarX_=2)

#model prediction
predict(attack,t(traces[1,]))

Run the code above in your browser using DataLab