File: sci_ifft.sci

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (14 lines) | stat: -rw-r--r-- 552 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function [stk,txt,top]=sci_ifft()
// Copyright INRIA
txt=[]
if rhs==1 then
  if stk(top)(3)=='1'|stk(top)(4)=='1' then
    stk=list('fft('+stk(top)(1)+',1)','0',stk(top)(3),stk(top)(4),'1','?')
  else
    write(logfile,'Warning: Not enough information on arg size using mtlb_ifft instead of ifft')
    txt=['//mtlb_fft may be replaced by fft if '+stk(top)(1)+' is a vector']
    stk=list('mtlb_fft('+stk(top)(1)+',1)','0',stk(top)(3),stk(top)(4),'1','?')
  end
else  
  stk=list('mtlb_fft('+stk(top-1)(1)+','+stk(top)(1)+',1)','0','?','?','1','?')
end