/
niceSOFT
/
numpy
Обзор
Документация
Войти
/
niceSOFT
/
numpy
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
doc/source/f2py/code/advanced/boilerplating/src/improved_base_adder.pyf
19 строк
727 B
Rohit Goswami
DOC: Add documentation on using fypp with f2py
16 янв 2024, 19:56
Не верифицирован
16 янв 2024, 19:56
9228f04
Код
Авторство
О чём код?
! -*- f90 -*- ! Note: the context of this file is case sensitive. python module adder ! in interface ! in :adder module adder ! in :adder:adder_base.f90 subroutine zadd(a,b,c,n) ! in :adder:adder_base.f90:adder integer intent(hide),depend(a) :: n=len(a) double complex dimension(n),intent(in) :: a double complex dimension(n),intent(in),depend(n) :: b double complex dimension(n),intent(out),depend(n) :: c end subroutine zadd end module adder end interface end python module adder ! This file was auto-generated with f2py (version:2.0.0.dev0+git20240101.bab7280). ! See: ! https://numpy.org/doc/stable/f2py/