커뮤니티
부탁 드립니다.
2017-07-02 18:18:37
125
글번호 110909
도움 주심에 경배로 감사 인사 올립니다.
53582번의 답변에 대한 추가 질문 입니다.
조건에 의해 생성된 선(일자 그래프)을-->(짧게 표시되는선)
해선에서 당일(07:00~익일06:00)에만
연장 표시 되도록 가능하겠는지요?
답변된 수식)
input : p100(100);
var : HV1(0),HV2(0),HV3(0);
var : HH1(0),HH2(0),HH3(0);
var : LL1(0),LL2(0),LL3(0);
HV1 = NthHighest(1,v,p100);
HV2 = nthhighest(2,v,p100);
HV3 = nthhighest(3,v,p100);
HH1=NthHighest(1,h,p100);
HH2=nthhighest(2,h,p100);
HH3=nthhighest(3,h,p100);
LL1=NthLowest(1,L,P100);
LL2=NTHLOWEST(2,L,P100);
LL3=NTHLOWEST(3,L,P100);
if HH1 > 0 and H == HH1 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition1 = true;
var11 = H;
}
if Condition1 == true and var11 != HH1 Then
Condition1 = false;
if HH2 > 0 and H == HH2 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition2 = true;
var12 = H;
}
if Condition2 == true and var12 != HH2 Then
Condition2 = false;
if HH3 > 0 and H == HH3 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition3 = true;
var13 = H;
}
if Condition3 == true and var13 != HH3 Then
Condition3 = false;
if LL1 > 0 and L == LL1 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition4 = true;
var21 = L;
}
if Condition4 == true and var21 != LL1 Then
Condition4 = false;
if LL2 > 0 and L == LL2 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition5 = true;
var22 = L;
}
if Condition5 == true and var22 != LL2 Then
Condition5 = false;
if LL3 > 0 and L == LL3 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition6 = true;
var23 = L;
}
if Condition6 == true and var23 != LL3 Then
Condition6 = false;
if Condition1 == true then{
plot1(var11);
}
if Condition2 == true then{
plot2(var12);
}
if Condition3 == true then{
plot3(var13);
}
if Condition4 == true then{
plot4(var21);
}
if Condition5 == true then{
plot5(var22);
}
if Condition6 == true then{
plot6(var23);
}
답변 1
예스스탁 예스스탁 답변
2017-07-03 16:05:53
안녕하세요
예스스탁입니다.
가능하지 않습니다.
도움을 드리지 못해 죄송합니다.
즐거운 하루되세요
> yes 님이 쓴 글입니다.
> 제목 : 부탁 드립니다.
> 도움 주심에 경배로 감사 인사 올립니다.
53582번의 답변에 대한 추가 질문 입니다.
조건에 의해 생성된 선(일자 그래프)을-->(짧게 표시되는선)
해선에서 당일(07:00~익일06:00)에만
연장 표시 되도록 가능하겠는지요?
답변된 수식)
input : p100(100);
var : HV1(0),HV2(0),HV3(0);
var : HH1(0),HH2(0),HH3(0);
var : LL1(0),LL2(0),LL3(0);
HV1 = NthHighest(1,v,p100);
HV2 = nthhighest(2,v,p100);
HV3 = nthhighest(3,v,p100);
HH1=NthHighest(1,h,p100);
HH2=nthhighest(2,h,p100);
HH3=nthhighest(3,h,p100);
LL1=NthLowest(1,L,P100);
LL2=NTHLOWEST(2,L,P100);
LL3=NTHLOWEST(3,L,P100);
if HH1 > 0 and H == HH1 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition1 = true;
var11 = H;
}
if Condition1 == true and var11 != HH1 Then
Condition1 = false;
if HH2 > 0 and H == HH2 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition2 = true;
var12 = H;
}
if Condition2 == true and var12 != HH2 Then
Condition2 = false;
if HH3 > 0 and H == HH3 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition3 = true;
var13 = H;
}
if Condition3 == true and var13 != HH3 Then
Condition3 = false;
if LL1 > 0 and L == LL1 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition4 = true;
var21 = L;
}
if Condition4 == true and var21 != LL1 Then
Condition4 = false;
if LL2 > 0 and L == LL2 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition5 = true;
var22 = L;
}
if Condition5 == true and var22 != LL2 Then
Condition5 = false;
if LL3 > 0 and L == LL3 and
((HV1 > 0 and V >= HV1) or
(HV2 > 0 and V >= HV2) or
(HV3 > 0 and V >= HV3)) Then{
Condition6 = true;
var23 = L;
}
if Condition6 == true and var23 != LL3 Then
Condition6 = false;
if Condition1 == true then{
plot1(var11);
}
if Condition2 == true then{
plot2(var12);
}
if Condition3 == true then{
plot3(var13);
}
if Condition4 == true then{
plot4(var21);
}
if Condition5 == true then{
plot5(var22);
}
if Condition6 == true then{
plot6(var23);
}
다음글
이전글