Borrar filtros
Borrar filtros

How to create a training data set?

12 visualizaciones (últimos 30 días)
Machine Learning Enthusiast
Machine Learning Enthusiast el 22 de Dic. de 2016
Respondida: Ahmed Yasser el 1 de Jul. de 2017
I have tried to generate using MATLAB simulink and PSCAD/EMTDC software but in vain.
I want to create training cases for fault detection in Electrical power systems especially for CT(current transformer) and relays.

Respuesta aceptada

Greg Heath
Greg Heath el 23 de Dic. de 2016
Editada: Greg Heath el 23 de Dic. de 2016
Data consists of N pairs of I-dimensional "I"nputs and corresponding O-dimensional "O"utput targets.
They are presented in 2 matrices with dimensions
[ I N ] = size(inputmatrix))
[ O N ] = size(targetmatrix)
Hope this helps.
Thank you for formally accepting my answer
Greg
  1 comentario
Machine Learning Enthusiast
Machine Learning Enthusiast el 24 de Dic. de 2016
Thank you Greg for getting back to me.
i have tried this.Is this OK?for ANN
T = csvread('InpOp.csv');
[Ro,Co]=size(T);
for i=1:Ro
Time(i)=T(i,1);
InBusA(i)={T(i,2)};
InBusB(i)={T(i,3)};
InBusC(i)={T(i,4)};
TrgCtlA(i)={T(i,5)};
TrgCtlB(i)={T(i,6)};
TrgCtlC(i)={T(i,7)};
end

Iniciar sesión para comentar.

Más respuestas (1)

Ahmed Yasser
Ahmed Yasser el 1 de Jul. de 2017
a
if true
% code
end

Categorías

Más información sobre Real-Time Simulation en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by