Func Calculate Channel Sde

  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Func Calculate Channel Sde as PDF for free.

More details

  • Words: 85
  • Pages: 1
create or replace function func_calculate_channel_sde (bitrate float) return integer is -/*---------------------------------------------------------------------------------------------------------*/ --/*--created by : venkatesan s --------------------------------------------------------------------*/ --/*--datelastmodified : 02-mar-2008 ---------------------------------------------------------------------*/ --/*--purpose : to caclcualate the channel sde according to the bit rate ------------------------*/ --/*--version : 1.0 -----------------------------------------------------------------------------*/ --/*--sample : select func_calculate_channel_sde(5) from dual; ---------------------------------*/ -/*---------------------------------------------------------------------------------------------------------*/ v_sde integer; begin if (bitrate < 6) then v_sde := 1; return v_sde; elsif (bitrate = 15) then v_sde := 4; return v_sde; elsif (bitrate = 19) then v_sde := 5; return v_sde; end if; return v_sde; end; /

Related Documents

Func Calculate Channel Sde
November 2019 4
Sde 1
November 2019 2
Func
June 2020 10
Sde Competative
November 2019 7
Channel
October 2019 66
Pump Calculate
May 2020 8