필터 지우기
필터 지우기

How to create a training data set?

조회 수: 12 (최근 30일)
Machine Learning Enthusiast
Machine Learning Enthusiast 2016년 12월 22일
답변: Ahmed Yasser 2017년 7월 1일
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.

채택된 답변

Greg Heath
Greg Heath 2016년 12월 23일
편집: Greg Heath 2016년 12월 23일
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
Machine Learning Enthusiast
Machine Learning Enthusiast 2016년 12월 24일
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

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Ahmed Yasser
Ahmed Yasser 2017년 7월 1일
a
if true
% code
end

카테고리

Help CenterFile Exchange에서 Real-Time Simulation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by