Quick Start Guide
The most basic example on how to use this module is to download the module, put the ‘ttb’-Folder in your working directory and add two lines of code:
include 'ttb/ttb_library.f'
program script101_ttb
use Tensor
implicit none
! user code
end program script101_ttb
The include 'ttb/ttb_library.f'
statement replaces the line with the content of the ttb-module. The first line in a program or subroutine is now a use Tensor
statement. That’s it - now you’re ready to go.
Continue to the Example section. For a list and detailed information of available functions go here.