Skip to content

Commit

Permalink
Merge pull request #7 from jchristopherson/v1.1.1-Development
Browse files Browse the repository at this point in the history
V1.1.1 development
  • Loading branch information
jchristopherson authored Sep 12, 2023
2 parents 0baa75c + 208ab26 commit 86a9fa7
Show file tree
Hide file tree
Showing 10 changed files with 61,680 additions and 61,452 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.24)
project(
fstats
LANGUAGES Fortran
VERSION 1.0.0
VERSION 1.1.1
)

# Get helper macros and functions
Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = fstats
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.1.0
PROJECT_NUMBER = 1.1.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions examples/allan_example.f90
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ program example
call yAxis%set_use_default_tic_label_format(.false.)
call yAxis%set_tic_label_format("%0.0e")
call xAxis%set_title("Averaging Time")
call yAxis%set_title("Variance")
call pd%define_data(v(:,1), v(:,2))
call yAxis%set_title("Deviation")
call pd%define_data(v(:,1), sqrt(v(:,2)))
call plt%push(pd)
call plt%draw()
end program
Loading

0 comments on commit 86a9fa7

Please sign in to comment.