This module defines a usefull derived type for file-IO.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer(kind=int32), | public, | parameter | :: | PF_JSON | = | 1 | |
integer(kind=int32), | public, | parameter | :: | PF_CSV | = | 2 | |
integer(kind=int32), | public, | parameter | :: | PF_real64 | = | 1 | |
integer(kind=int32), | public, | parameter | :: | PF_int32 | = | 2 | |
integer(kind=int32), | public, | parameter | :: | PF_char | = | 3 | |
integer(kind=int32), | public, | parameter | :: | KNT_ASCII | = | 100 |
convert character array to vector.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | line | |||
integer(kind=int32), | intent(in), | optional | :: | num_entity |
fill a vector by same integer number.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | line | |||
integer(kind=int32), | intent(in), | optional | :: | num_entity |
Capital to lowercase
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | line |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(string_), | intent(in) | :: | line |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | char |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(in) | :: | re64 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
complex(kind=real64), | intent(in) | :: | re64 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real32), | intent(in) | :: | re32 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int64), | intent(in) | :: | in64 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int32), | intent(in) | :: | in32 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int32), | intent(in) | :: | in32 | |||
integer(kind=int32), | intent(in) | :: | int32_c |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | char | |||
integer(kind=int32), | intent(in) | :: | IntVec(:) |
plot array by gnuplot
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(in) | :: | x(:) | |||
real(kind=real64), | intent(in) | :: | y(:) | |||
real(kind=real64), | intent(in), | optional | :: | z(:) | ||
character(len=*), | intent(in), | optional | :: | xr | ||
character(len=*), | intent(in), | optional | :: | yr | ||
character(len=*), | intent(in), | optional | :: | zr |
plot array by gnuplot
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(in) | :: | array(:,:) |
open file
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
character(len=1), | intent(in), | optional | :: | state |
run Caesar cipher
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | line | |||
integer(kind=int32), | intent(in) | :: | fshift |
JSON to real64-array
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(in) | :: | real64Array(:,:) | |||
character(len=*), | intent(in) | :: | name |
parse real64 array
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | row(2) | |||
integer(kind=int32), | intent(in) | :: | col(2) | |||
integer(kind=int32), | intent(in) | :: | num_col |
export array to csv file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:,:) | |||
logical, | intent(in), | optional | :: | no_header |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:,:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:) | |||
logical, | intent(in), | optional | :: | no_header |
export array to tsv file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:,:) | |||
logical, | intent(in), | optional | :: | no_header |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:,:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:) | |||
logical, | intent(in), | optional | :: | no_header |
import array from csv file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | n1 | |||
integer(kind=int32), | intent(in) | :: | n2 | |||
integer(kind=int32), | intent(in), | optional | :: | header(1:2) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | n1 | |||
integer(kind=int32), | intent(in) | :: | n2 | |||
integer(kind=int32), | intent(in) | :: | n3 | |||
integer(kind=int32), | intent(in), | optional | :: | header(1:2) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | n1 | |||
integer(kind=int32), | intent(in) | :: | header(1:2) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | column |
This class is usefull for file-IO.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | public | :: | fh | = | 100 |
File handler |
|
logical, | public | :: | active | = | .false. |
If file is opened, the active=.true. |
|
logical, | public | :: | EOF | = | .true. |
If the reader reaches the end of file, the EOF = .true. |
|
character(len=1), | public | :: | state |
state of the opened file ("w"::write-only , "a"::append , or "r"::read-only.) |
|||
character(len=200), | public | :: | path |
Triplet for identifing a file, but "name" and "extention" will be deplicated. |
|||
character(len=200), | public | :: | name |
Triplet for identifing a file, but "name" and "extention" will be deplicated. |
|||
character(len=200), | public | :: | extention |
Triplet for identifing a file, but "name" and "extention" will be deplicated. |
|||
character(len=:), | public, | allocatable | :: | title |
File title |
||
character(len=:), | public, | allocatable | :: | xlabel |
It will be deplicated. |
||
character(len=:), | public, | allocatable | :: | ylabel |
It will be deplicated. |
||
character(len=:), | public, | allocatable | :: | zlabel |
It will be deplicated. |
||
character(len=:), | public, | allocatable | :: | filename |
It will be deplicated. |
||
character(len=3), | public | :: | async | = | "no " |
For async read/write |
|
integer(kind=int32), | public | :: | lastModifiedTime | = | 0 |
It will be deplicated. |
|
logical, | public | :: | json_mode | = | .false. |
Read/write a file as a JSON file. It will be deplicated. |
|
logical, | public | :: | activate_rule | = | .false. |
if a rule should be set, following parameter should be modified. |
|
integer(kind=int32), | public | :: | header | ||||
integer(kind=int32), | public | :: | offset | ||||
integer(kind=int32), | public, | allocatable | :: | content_type(:) | |||
logical, | public | :: | binary | = | .false. |
procedure, public :: unit => unitIO | ../../../ It returns a file handler. |
procedure, public :: numLine => numLineIO | ../../../ It returns a number of line in the file. |
procedure, public :: flush => flushIO | ../../../ It flushes all buffered content. |
procedure, public :: search_line => search_lineIO | ../../../ It counts the number of line in a file. |
procedure, public :: exists => existsIO | ../../../ If file exists, it returns .true. |
procedure, public :: cp => cpIO | ../../../ File copy |
procedure, public :: ls => ls_IO | ../../../ ls command |
procedure, public :: zip => zip_IOClass | ../../../ zip command |
procedure, public :: unzip => unzip_IOClass | ../../../ unzip command |
procedure, public :: download => downloadIO | ../../../ download a file |
procedure, public :: rule => ruleIO | ../../../ set rule |
procedure, public :: ResetRule => ResetRuleIO | ../../../ reset rule |
procedure, public, pass :: openIOchar | ../../../ file open |
procedure, public, pass :: openIOstring | ../../../ file open |
procedure, public, pass :: parseIOChar200 | ../../../ parser |
procedure, public, pass :: parseIO2keysChar200 | ../../../ parser |
procedure, public, pass :: importIOReal64ArrayAsTxt | ../../../ Import real64-type array from txt file |
procedure, public, pass :: importIOReal64VectorAsTxt | ../../../ Import real64-type array from txt file |
procedure, public, pass :: importIOReal64VectorAsTxtWithIndex | ../../../ Import real64-type array from txt file |
procedure, public, pass :: importIODataFromFormatted | ../../../ Import real64-type array from txt file |
generic, public :: import => importIOReal64VectorAsTxt, importIOReal64ArrayAsTxt, importIOReal64VectorAsTxtWithIndex, importIODataFromFormatted | ../../../ Import real64-type array from txt file |
procedure, public, pass :: exportIOReal64ArrayAsTxt | ../../../ Exmport real64-type array from txt file |
procedure, public, pass :: exportIOReal64VectorAsTxt | ../../../ Exmport real64-type array from txt file |
procedure, public, pass :: exportIOReal64VectorAsTxtWithIndex | ../../../ Exmport real64-type array from txt file |
generic, public :: export => exportIOReal64VectorAsTxt, exportIOReal64ArrayAsTxt, exportIOReal64VectorAsTxtWithIndex | ../../../ Exmport real64-type array from txt file |
generic, public :: parse => parseIOChar200, parseIO2keysChar200 | ../../../ Parser |
procedure, public, pass :: parse_json_IOClass | ../../../ Json parser |
generic, public :: parse_json => parse_json_IOClass | ../../../ Json parser |
generic, public :: parse => parse_json_IOClass | ../../../ Json parser |
generic, public :: open => openIOchar, openIOstring | ../../../ File open |
procedure, public :: rewind => rewindIO | ../../../ Due to stupidness of GNU and Intel, We cannot use lstat by single code without ifdef so I expired them. Rewind file |
procedure, public :: goBack => goBackIO | ../../../ Go back to some lines. |
procedure, public :: goForward => goForwardIO | ../../../ Skip some lines. |
procedure, public, pass :: writeIOcharcharchar | ../../../ Write |
procedure, public, pass :: writeIOcharchar | |
procedure, public, pass :: writeIOchar | |
procedure, public, pass :: writeIOstringstringstring | Write |
procedure, public, pass :: writeIOstringstring | |
procedure, public, pass :: writeIOstring | |
procedure, public, pass :: dumpIOJSON_Key_Vector | |
procedure, public, pass :: dumpIOJSON_Key_VectorRe32 | |
procedure, public, pass :: dumpIOJSON_Key_VectorInt32 | |
procedure, public, pass :: dumpIOJSON_Key_value | |
procedure, public, pass :: dumpIOJSON_Key_valueRe32 | |
procedure, public, pass :: dumpIOJSON_Key_valueRe64 | |
procedure, public, pass :: dumpIOJSON_Key_valueChar | |
procedure, public, pass :: dumpIOJSON_Key_ArrayRe64 | |
procedure, public, pass :: dumpIOJSON_Key_ArrayInt32 | |
generic, public :: dump => dumpIOJSON_Key_Vector, dumpIOJSON_Key_VectorRe32, dumpIOJSON_Key_VectorInt32, dumpIOJSON_Key_value, dumpIOJSON_Key_valueRe32, dumpIOJSON_Key_valueRe64, dumpIOJSON_Key_valueChar, dumpIOJSON_Key_ArrayRe64, dumpIOJSON_Key_ArrayInt32 | ../../../ JSON dump. |
procedure, public :: arg => argIO | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32re64 | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32re64vector => writeIOint32re64Vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32int32vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32 | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32int32 | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32int32int32 | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32int32int32int32 | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32int32int32int32int32 | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32int32int32int32int32int32 | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32Vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOint64Vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32Vectorint32Vector => writeIOint32VectorInt32vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32Vectorint32Vectorint32Vector => writeIOint32VectorInt32vectorInt32Vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32Vectorint32Vectorre64Vector => writeIOint32VectorInt32vectorre64Vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32Vectorre64Vector => writeIOint32VectorRe64vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64Vectorre64Vector => writeIORe64VectorRe64vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64Vectorre64Vectorre64Vector => writeIORe64VectorRe64vectorRe64vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOint32Array | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64 | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64re64 | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64re64re64 | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64re64re64re64 | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64re64re64re64re64 | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64re64re64re64re64re64 | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64Vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOre64Array | ../../../ WRITE operation |
procedure, public, pass :: writeIO_re64Vector_re64Array | ../../../ WRITE operation |
procedure, public, pass :: writeIOcomplex64 | ../../../ WRITE operation |
procedure, public, pass :: writeIOcomplex64Vector | ../../../ WRITE operation |
procedure, public, pass :: writeIOcomplex64Array | ../../../ WRITE operation |
procedure, public, pass :: writeIOchar_real64Array_real64Array | ../../../ WRITE operation |
generic, public :: write => writeIOchar, writeIOstring, writeIOre64, writeIOre64Vector, writeIOre64Array, writeIOint32, writeIOint32Vector, writeIOint32Array, writeIOre64re64, writeIOre64re64re64, writeIOre64re64re64re64, writeIOre64re64re64re64re64, writeIOre64re64re64re64re64re64, writeIOint32int32, writeIOint32int32int32, writeIOint32int32int32int32, writeIOint32int32int32int32int32, writeIOint32int32int32int32int32int32, writeIOstringstring, writeIOstringstringstring, writeIOcharchar, writeIOcharcharchar, writeIOint32re64vector, writeIOint32int32vector, writeIOint32re64, writeIOcomplex64, writeIOcomplex64Vector, writeIOcomplex64Array, writeIOint32Vectorint32Vector, writeIOint32Vectorre64Vector, writeIOre64Vectorre64Vector, writeIOre64Vectorre64Vectorre64Vector, writeIOint32Vectorint32Vectorint32Vector, writeIOint32Vectorint32Vectorre64Vector, writeIOchar_real64Array_real64Array, writeIO_re64Vector_re64Array | WRITE operation |
procedure, public, pass :: readIOchar | |
procedure, public, pass :: readIOInt | ../../../ READ operation |
procedure, public, pass :: readIOIntVector | ../../../ READ operation |
procedure, public, pass :: readIOIntArray | ../../../ READ operation |
procedure, public, pass :: readIOReal64 | ../../../ READ operation |
procedure, public, pass :: readIOReal64Vector | ../../../ READ operation |
procedure, public, pass :: readIOReal64VectorVector | ../../../ READ operation |
procedure, public, pass :: readIOReal64Array | ../../../ READ operation |
generic, public :: read => readIOchar, readIOInt, readIOIntVector, readIOIntArray, readIOReal64, readIOReal64Vector, readIOReal64VectorVector, readIOReal64Array | ../../../ READ operation |
procedure, public, pass :: plotIO | ../../../ Write and plot by gnuplot. |
procedure, public, pass :: plotIODirect | ../../../ Write and plot by gnuplot. |
procedure, public, pass :: plotIODirectReal32 | ../../../ Write and plot by gnuplot. |
generic, public :: plot => plotIO, plotIODirect, plotIODirectReal32 | ../../../ Write and plot by gnuplot. |
procedure, public, pass :: replotIO | ../../../ Write and replot by gnuplot. |
procedure, public, pass :: replotIODirect | ../../../ Write and replot by gnuplot. |
generic, public :: replot => replotIO, replotIODirect | ../../../ Write and replot by gnuplot. |
procedure, public :: splot => splotIO | ../../../ Write and 3D-plot by gnuplot. |
procedure, public :: readline => readlineIO | ../../../ read a line |
procedure, public :: close => closeIO | ../../../ close file |
procedure, public :: to_Array => to_Array_real64_IOClass | ../../../ convert file content to real64-array |
procedure, public :: to_list => to_list_IOClass | ../../../ convert file content to list |
procedure, public :: bin2vector => bin2vector_real64_IOClass | ../../../ convert file content written in binary to vector |
procedure, public :: vector2bin => vector2bin_real64_IOClass | ../../../ convert file content written in real64 vector to binary |
procedure, public :: wait => wait_async_IOClass | ../../../ wait for async (only for async read/write) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | name |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in), | optional | :: | filename | ||
integer(kind=int32), | intent(in), | optional | :: | fileformat | ||
character(len=*), | intent(in) | :: | key1 | |||
logical, | intent(in), | optional | :: | debug |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in), | optional | :: | filename | ||
integer(kind=int32), | intent(in), | optional | :: | fileformat | ||
character(len=*), | intent(in) | :: | key1 | |||
character(len=*), | intent(in) | :: | key2 | |||
logical, | intent(in), | optional | :: | debug |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | id |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | line |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(string_), | intent(in) | :: | line |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | line | |||
integer(kind=int32), | intent(in) | :: | fshift |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int32), | intent(in) | :: | num | |||
integer(kind=int32), | intent(in) | :: | max |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(in) | :: | real64Array(:,:) | |||
character(len=*), | intent(in) | :: | name |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | name |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | num_column |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | name | |||
logical, | intent(in) | :: | with_index |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | format | |||
character(len=*), | intent(in) | :: | name |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
character(len=1), | intent(in), | optional | :: | state |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | row(2) | |||
integer(kind=int32), | intent(in) | :: | col(2) | |||
integer(kind=int32), | intent(in) | :: | num_col |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | line | |||
integer(kind=int32), | intent(in), | optional | :: | num_entity |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | line | |||
integer(kind=int32), | intent(in), | optional | :: | num_entity |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | n1 | |||
integer(kind=int32), | intent(in) | :: | n2 | |||
integer(kind=int32), | intent(in) | :: | n3 | |||
integer(kind=int32), | intent(in), | optional | :: | header(1:2) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | n1 | |||
integer(kind=int32), | intent(in) | :: | n2 | |||
integer(kind=int32), | intent(in), | optional | :: | header(1:2) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | column |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | n1 | |||
integer(kind=int32), | intent(in) | :: | header(1:2) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_) | :: | this | ||||
character(len=*), | intent(in) | :: | filename |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | this | |||
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | column(:) | |||
integer(kind=int32), | intent(in) | :: | header | |||
integer(kind=int32), | intent(in), | optional | :: | upsampling | ||
logical, | intent(in), | optional | :: | debug |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | this | |||
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(in) | :: | column | |||
integer(kind=int32), | intent(in) | :: | header | |||
character(len=*), | intent(in) | :: | separator | |||
logical, | intent(in), | optional | :: | debug |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=Real64), | intent(in) | :: | dataframe(:,:) | |||
integer(kind=int32), | intent(in) | :: | upsampling |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
integer(kind=int32), | intent(inout) | :: | val |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
integer(kind=int32), | intent(inout) | :: | val(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
integer(kind=int32), | intent(inout) | :: | val(:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
real(kind=real64), | intent(inout) | :: | val |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
real(kind=real64), | intent(inout) | :: | val(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
real(kind=real64), | intent(inout), | allocatable | :: | val(:) | ||
real(kind=real64), | intent(inout), | allocatable | :: | val2(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
real(kind=real64), | intent(inout) | :: | val(:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj | |||
character(len=*), | intent(in) | :: | name | |||
integer(kind=int32), | intent(inout) | :: | n |
! 意味不明なので削除@20240614
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in), | optional | :: | path | ||
character(len=1), | intent(in), | optional | :: | state | ||
character(len=*), | intent(in), | optional | :: | name | ||
character(len=*), | intent(in), | optional | :: | extention | ||
logical, | intent(in), | optional | :: | binary | ||
character(len=*), | intent(in), | optional | :: | async | ||
integer(kind=int32), | intent(in), | optional | :: | fh |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
type(string_), | intent(in) | :: | path_s | |||
character(len=1), | intent(in), | optional | :: | state | ||
type(string_), | intent(in), | optional | :: | name_s | ||
type(string_), | intent(in), | optional | :: | extention_s | ||
logical, | intent(in), | optional | :: | binary | ||
integer(kind=int32), | intent(in), | optional | :: | fh |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | char | |||
logical, | intent(in), | optional | :: | append | ||
logical, | intent(in), | optional | :: | advance |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | char | |||
real(kind=real64), | intent(in) | :: | vec1(:) | |||
real(kind=real64), | intent(in) | :: | vec2(:) | |||
logical, | intent(in), | optional | :: | append | ||
logical, | intent(in), | optional | :: | advance | ||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | char1 | |||
character(len=*), | intent(in) | :: | char2 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | char1 | |||
character(len=*), | intent(in) | :: | char2 | |||
character(len=*), | intent(in) | :: | char3 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32 | |||
real(kind=real64), | intent(in) | :: | re64 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32_1 | |||
integer(kind=int32), | intent(in) | :: | in32_2 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32_1 | |||
integer(kind=int32), | intent(in) | :: | in32_2 | |||
integer(kind=int32), | intent(in) | :: | in32_3 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32_1 | |||
integer(kind=int32), | intent(in) | :: | in32_2 | |||
integer(kind=int32), | intent(in) | :: | in32_3 | |||
integer(kind=int32), | intent(in) | :: | in32_4 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32_1 | |||
integer(kind=int32), | intent(in) | :: | in32_2 | |||
integer(kind=int32), | intent(in) | :: | in32_3 | |||
integer(kind=int32), | intent(in) | :: | in32_4 | |||
integer(kind=int32), | intent(in) | :: | in32_5 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32_1 | |||
integer(kind=int32), | intent(in) | :: | in32_2 | |||
integer(kind=int32), | intent(in) | :: | in32_3 | |||
integer(kind=int32), | intent(in) | :: | in32_4 | |||
integer(kind=int32), | intent(in) | :: | in32_5 | |||
integer(kind=int32), | intent(in) | :: | in32_6 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in64(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32(:) | |||
integer(kind=int32), | intent(in) | :: | in32_c(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32(:) | |||
integer(kind=int32), | intent(in) | :: | in32_c(:) | |||
integer(kind=int32), | intent(in) | :: | in32_cc(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32(:) | |||
integer(kind=int32), | intent(in) | :: | in32_c(:) | |||
real(kind=real64), | intent(in) | :: | re64_cc(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32(:) | |||
real(kind=real64), | intent(in) | :: | Re64(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | Re64_c(:) | |||
real(kind=real64), | intent(in) | :: | Re64(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | Re64_cc(:) | |||
real(kind=real64), | intent(in) | :: | Re64_c(:) | |||
real(kind=real64), | intent(in) | :: | Re64(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32_1 | |||
integer(kind=int32), | intent(in) | :: | in32(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32_1 | |||
real(kind=real64), | intent(in) | :: | re64(:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | in32(:,:) | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64_1 | |||
real(kind=real64), | intent(in) | :: | re64_2 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64_1 | |||
real(kind=real64), | intent(in) | :: | re64_2 | |||
real(kind=real64), | intent(in) | :: | re64_3 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64_1 | |||
real(kind=real64), | intent(in) | :: | re64_2 | |||
real(kind=real64), | intent(in) | :: | re64_3 | |||
real(kind=real64), | intent(in) | :: | re64_4 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64_1 | |||
real(kind=real64), | intent(in) | :: | re64_2 | |||
real(kind=real64), | intent(in) | :: | re64_3 | |||
real(kind=real64), | intent(in) | :: | re64_4 | |||
real(kind=real64), | intent(in) | :: | re64_5 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64_1 | |||
real(kind=real64), | intent(in) | :: | re64_2 | |||
real(kind=real64), | intent(in) | :: | re64_3 | |||
real(kind=real64), | intent(in) | :: | re64_4 | |||
real(kind=real64), | intent(in) | :: | re64_5 | |||
real(kind=real64), | intent(in) | :: | re64_6 | |||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64(:) | |||
logical, | intent(in), | optional | :: | sparse |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64(:,:) | |||
logical, | intent(in), | optional | :: | sparse | ||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | re64v(:) | |||
real(kind=real64), | intent(in) | :: | re64(:,:) | |||
logical, | intent(in), | optional | :: | sparse | ||
character(len=*), | intent(in), | optional | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
complex(kind=kind(0d0)), | intent(in) | :: | complex64 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
complex(kind=kind(0d0)), | intent(in) | :: | complex64(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
complex(kind=kind(0d0)), | intent(in) | :: | complex64(:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=200) | :: | char |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in), | optional | :: | status |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | char |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | char | |||
integer(kind=int32), | intent(in) | :: | IntVec(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(in) | :: | re64 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
complex(kind=real64), | intent(in) | :: | re64 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real32), | intent(in) | :: | re32 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int64), | intent(in) | :: | in64 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int32), | intent(in) | :: | in32 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=int32), | intent(in) | :: | in32 | |||
integer(kind=int32), | intent(in) | :: | int32_c |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(in) | :: | x(:) | |||
real(kind=real64), | intent(in) | :: | y(:) | |||
real(kind=real64), | intent(in), | optional | :: | z(:) | ||
character(len=*), | intent(in), | optional | :: | xr | ||
character(len=*), | intent(in), | optional | :: | yr | ||
character(len=*), | intent(in), | optional | :: | zr |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(in) | :: | array(:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | x(:) | |||
real(kind=real64), | intent(in) | :: | Fx(:) | |||
character(len=*), | intent(in), | optional | :: | option | ||
logical, | intent(in), | optional | :: | logscale | ||
character(len=*), | intent(in), | optional | :: | name |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real64), | intent(in) | :: | x(:) | |||
real(kind=real64), | intent(in) | :: | Fx(:) | |||
character(len=*), | intent(in), | optional | :: | option | ||
logical, | intent(in), | optional | :: | logscale | ||
character(len=*), | intent(in), | optional | :: | name |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
real(kind=real32), | intent(in) | :: | x(:) | |||
real(kind=real32), | intent(in) | :: | Fx(:) | |||
character(len=*), | intent(in), | optional | :: | option | ||
logical, | intent(in), | optional | :: | logscale | ||
character(len=*), | intent(in), | optional | :: | name |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in), | optional | :: | name | ||
character(len=*), | intent(in), | optional | :: | option | ||
logical, | intent(in), | optional | :: | logscale |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in), | optional | :: | name | ||
character(len=*), | intent(in), | optional | :: | option | ||
logical, | intent(in), | optional | :: | logscale |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in), | optional | :: | name | ||
character(len=*), | intent(in), | optional | :: | option | ||
logical, | intent(in), | optional | :: | logscale |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | obj |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in), | optional | :: | lines |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in), | optional | :: | lines |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
real(kind=real64), | intent(in) | :: | valueVector(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
real(kind=real32), | intent(in) | :: | valueVector(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
integer(kind=int32), | intent(in) | :: | valueVector(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
integer(kind=int32), | intent(in) | :: | valueVector(:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
real(kind=real64), | intent(in) | :: | valueVector(:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
integer(kind=int32), | intent(in) | :: | value |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
real(kind=real64), | intent(in) | :: | value |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
real(kind=real32), | intent(in) | :: | value |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | key | |||
character(len=*), | intent(in) | :: | value |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | header | |||
integer(kind=int32), | intent(in) | :: | offset | |||
integer(kind=int32), | intent(in) | :: | content_type(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
integer(kind=int32), | intent(in) | :: | header | |||
integer(kind=int32), | intent(in) | :: | offset | |||
integer(kind=int32), | intent(in) | :: | content_type(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | real64Vector(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | real64Array(:,:) | |||
integer(kind=int32), | intent(in), | optional | :: | num_column |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(inout) | :: | obj | |||
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | allocatable | :: | real64Vector(:) | |||
logical, | intent(in) | :: | with_index |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:,:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:,:,:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:,:) | |||
logical, | intent(in), | optional | :: | no_header |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:) | |||
logical, | intent(in), | optional | :: | no_header |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:,:) | |||
logical, | intent(in), | optional | :: | no_header |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | a(:) | |||
logical, | intent(in), | optional | :: | no_header |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | this | |||
character(len=*), | intent(in) | :: | from |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_) | :: | this | ||||
character(len=*), | intent(in) | :: | from | |||
character(len=*), | intent(in) | :: | to |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | trigger_level | |||
integer(kind=int32), | intent(in) | :: | buffer_size | |||
integer(kind=int32), | intent(in) | :: | segment_length | |||
integer(kind=int32), | intent(inout), | optional | :: | segment_num | ||
real(kind=real64), | intent(in), | optional | :: | dt |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | this |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | this | |||
character(len=*), | intent(in) | :: | zipfile | |||
character(len=*), | intent(in) | :: | filename |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | this | |||
character(len=*), | intent(in) | :: | zipfile | |||
character(len=*), | intent(in) | :: | filename |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | this | |||
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(in) | :: | vec(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(IO_), | intent(in) | :: | this | |||
character(len=*), | intent(in) | :: | name | |||
real(kind=real64), | intent(inout), | allocatable | :: | vec(:) |