This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import glob | |
import shutil | |
from obspy import read_inventory | |
xmlFiles = glob.glob("./*.xml") | |
for xmlFile in xmlFiles: | |
print(xmlFile) | |
inventory = read_inventory(xmlFile) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module penjumlahan_interface | |
use iso_c_binding, only: c_double | |
use penjumlahan_module, only: penjumlahan | |
implicit none | |
contains | |
subroutine c_penjumlahan(a, b, c) bind(c) | |
real(c_double), intent(in) :: a, b | |
real(c_double), intent(out) :: c | |
call penjumlahan(a, b, c) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################################################################### | |
# Automatically generated by qmake (3.1) Mon Sep 13 15:29:11 2021 | |
###################################################################### | |
TEMPLATE = app | |
TARGET = embedded | |
INCLUDEPATH += . | |
INCLUDEPATH += /home/yudha/Miniconda/envs/pyqt5/include/python3.9 | |
# The following define makes your compiler warn you if you use any |
OlderNewer