Skip to content

Commit 86a9fa7

Browse files
Merge pull request #7 from jchristopherson/v1.1.1-Development
V1.1.1 development
2 parents 0baa75c + 208ab26 commit 86a9fa7

File tree

10 files changed

+61680
-61452
lines changed

10 files changed

+61680
-61452
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.24)
33
project(
44
fstats
55
LANGUAGES Fortran
6-
VERSION 1.0.0
6+
VERSION 1.1.1
77
)
88

99
# Get helper macros and functions

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = fstats
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 1.1.0
51+
PROJECT_NUMBER = 1.1.1
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

examples/allan_example.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ program example
4545
call yAxis%set_use_default_tic_label_format(.false.)
4646
call yAxis%set_tic_label_format("%0.0e")
4747
call xAxis%set_title("Averaging Time")
48-
call yAxis%set_title("Variance")
49-
call pd%define_data(v(:,1), v(:,2))
48+
call yAxis%set_title("Deviation")
49+
call pd%define_data(v(:,1), sqrt(v(:,2)))
5050
call plt%push(pd)
5151
call plt%draw()
5252
end program

0 commit comments

Comments
 (0)