Jove
Visualize
Contact Us
JoVE
x logofacebook logolinkedin logoyoutube logo
ABOUT JoVE
OverviewLeadershipBlogJoVE Help Center
AUTHORS
Publishing ProcessEditorial BoardScope & PoliciesPeer ReviewFAQSubmit
LIBRARIANS
TestimonialsSubscriptionsAccessResourcesLibrary Advisory BoardFAQ
RESEARCH
JoVE JournalMethods CollectionsJoVE Encyclopedia of ExperimentsArchive
EDUCATION
JoVE CoreJoVE BusinessJoVE Science EducationJoVE Lab ManualFaculty Resource CenterFaculty Site
Terms & Conditions of Use
Privacy Policy
Policies

Related Experiment Videos

A portable integer FFT in FORTRAN.

D M Monro

    Computer Programs in Biomedicine
    |December 1, 1977
    PubMed
    Summary
    This summary is machine-generated.

    This article presents a method for performing fast Fourier transforms using only integer arithmetic. By using standard programming language functions, the code remains compatible across various small computing platforms. Users can later optimize performance by replacing specific segments with hardware-specific instructions.

    Related Concept Videos

    You might also read

    Related Articles

    Articles linked to this work by shared authors, journal, and citation graph.

    Sort by
    Same author

    Effect of cataract surgery and pupil dilation on iris pattern recognition for personal authentication.

    Eye (London, England)·2009
    Same author

    Comparison of measured and computed epicardial potentials from a patient-specific inverse model.

    Journal of electrocardiology·1993
    Same author

    Parallel computation of ECG fields.

    Journal of electrocardiology·1992
    Same author

    Body surface potential mapping to monitor the effects of thrombolytic therapy following acute myocardial infarction.

    Journal of electrocardiology·1989
    Same author

    Comparison of epicardial and body surface ECG potentials in man.

    Cardiovascular research·1986
    Same author

    Interpolation methods for surface mapping.

    Computer programs in biomedicine·1980
    Same journal

    Microprocessor-based system for on-line analysis of respiratory responses to exercise.

    Computer programs in biomedicine·1985
    Same journal

    A calculator program for clinical application of the Bayesian method of predicting plasma drug levels.

    Computer programs in biomedicine·1985
    Same journal

    Testing marginal homogeneity in square tables; with emphasis on matched data.

    Computer programs in biomedicine·1985
    Same journal

    Computerized analysis of enzyme cascade reactions using continuous rate data obtained with an ELISA reader.

    Computer programs in biomedicine·1985
    Same journal

    Mathematical modelling of stimulus-secretion coupling in the pancreatic B-cell. II. Calcium-stimulated calcium release.

    Computer programs in biomedicine·1985
    Same journal

    A program for logistic prediction modelling.

    Computer programs in biomedicine·1985
    See all related articles

    Area of Science:

    • Computational mathematics within integer Fast Fourier Transform research
    • Software engineering for portable scientific computing

    Background:

    Digital signal processing often relies on complex floating-point calculations that may exceed the capabilities of older or constrained hardware environments. No prior work had resolved how to maintain high-speed spectral analysis on systems lacking dedicated hardware for non-integer math. Developers frequently struggle with porting sophisticated algorithms between diverse architectures due to varying internal representations of numeric data. That uncertainty drove the need for a universal approach that avoids reliance on specialized floating-point units. Standard libraries often assume the presence of advanced processors, leaving smaller machines without efficient computational tools. This gap motivated the creation of a simplified, integer-based framework that operates reliably across different environments. Prior research has shown that bit manipulation techniques can replace traditional multiplication to reduce the overhead of complex mathematical operations. Such strategies allow for broader accessibility of advanced signal processing tasks on limited hardware resources.

    Keywords:
    spectral analysissignal processingFORTRAN programmingcomputational efficiency

    Frequently Asked Questions

    The researchers propose a radix 2 approach that simulates binary fraction multiplications and bit reversal operations. This mechanism allows the algorithm to function using only integer arithmetic, bypassing the need for specialized floating-point hardware during the initial implementation phase.

    The authors utilize basic FORTRAN functions to maintain compatibility. This choice ensures that the code can run on various small computer systems without requiring platform-specific compilers or libraries that might otherwise limit the software's portability across different hardware architectures.

    A radix 2 structure is necessary to simplify the butterfly operations within the transform. This specific mathematical configuration allows the algorithm to effectively manage data decomposition while remaining compatible with integer-only arithmetic constraints found in smaller computing systems.

    Related Experiment Videos

    Purpose Of The Study:

    The aim of this study is to develop a portable integer fast Fourier transform that functions reliably on small computer systems. This research addresses the challenge of performing complex spectral analysis in environments lacking dedicated floating-point hardware. The authors seek to create a solution that prioritizes broad compatibility across diverse computing architectures. By avoiding reliance on specialized math units, the proposed method expands the accessibility of signal processing tasks. The motivation stems from the difficulty of porting high-level algorithms between systems with varying internal numeric representations. This work provides a standardized framework that simplifies the implementation of Fourier transforms. The researchers intend to offer a flexible starting point for developers working on constrained hardware. Ultimately, the study provides a pathway for achieving efficient mathematical operations through a combination of portable code and targeted optimization.

    Main Methods:

    Review approach involves the development of a modular algorithm designed for broad hardware compatibility. The authors utilize standard language syntax to define the core mathematical operations required for spectral analysis. They implement bit reversal as a discrete function to manage data ordering without complex memory addressing. The design strategy focuses on simulating fractional arithmetic using integer-based operations to avoid floating-point dependencies. This approach ensures that the code remains executable on systems with limited instruction sets. The researchers structure the transform using a radix 2 framework to simplify the underlying computational steps. They provide a baseline implementation that serves as a template for further refinement. This methodology emphasizes the separation of logical correctness from hardware-specific optimization tasks.

    Main Results:

    Key findings from the literature indicate that the radix 2 approach successfully enables spectral analysis on constrained hardware. The algorithm achieves functional parity across diverse small computer systems by avoiding non-integer math. The authors report that the initial implementation relies on standard functions to perform binary fraction multiplications. They demonstrate that bit reversal can be effectively handled through integer-based logic. The results show that the software remains portable across different platforms without requiring significant modifications. The researchers observe that the execution speed is initially limited by the overhead of standard language functions. They confirm that machine code replacement of specific subroutines allows for substantial improvements in processing efficiency. The findings suggest that this modular strategy balances the need for universal compatibility with the potential for high-performance execution.

    Conclusions:

    The authors propose that integer-based spectral analysis provides a viable alternative for constrained computing environments. Synthesis and implications suggest that portability remains a primary advantage of this specific algorithmic design. By utilizing basic language features, the code ensures functional consistency across disparate hardware platforms. The researchers indicate that initial implementation prioritizes compatibility over raw execution speed. They note that performance gains are achievable through targeted optimization of specific subroutines. Machine code substitution serves as a secondary phase to enhance throughput once the base logic is verified. This approach allows developers to scale their computational efficiency based on the requirements of their target systems. The study demonstrates that complex mathematical transformations can be adapted for simpler, integer-only architectures without sacrificing logical correctness.

    The code relies on simulated binary fraction multiplications to handle the scaling of values. This data type management is essential for maintaining precision during the transform process when floating-point units are absent or inefficient for the task at hand.

    The researchers measure the efficiency of the transform by evaluating its performance across small computer systems. They observe that while the initial version prioritizes compatibility, the execution speed can be improved later through machine code replacement of specific, high-overhead segments.

    The authors imply that this portable design serves as a foundational layer for signal processing. They suggest that developers can customize the implementation by replacing specific parts with machine code to meet the performance demands of their particular hardware environment.