Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
Signed-off-by: ErikQQY <2283984853@qq.com>
  • Loading branch information
ErikQQY committed Dec 22, 2021
1 parent 73530ef commit 34e2838
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<a href="https://codecov.io/gh/SciFracX/FractionalSystems.jl">
<img alt="codecov" src="https://codecov.io/gh/SciFracX/FractionalSystems.jl/branch/master/graph/badge.svg">
</a>
<a href="https://www.erikqqy.xyz/FractionalSystems.jl/dev/">
<a href="https://scifracx.github.io/FractionalSystems.jl/dev/">
<img src="https://img.shields.io/badge/docs-dev-blue.svg" alt="license">
</a>
<a href="https://github.com/SciFracX/FractionalSystems.jl/blob/master/LICENSE">
Expand All @@ -32,10 +32,13 @@
</a>
</p>

## 🏗️🏗️🏗️🏗️🏗️🏗️WIP🚧🚧🚧🚧🚧🚧


FractionalSystems.jl is a Julia toolbox can be used to model and analyse the fractional order systems.

## 🏗️🏗️🏗️🏗️🏗️🏗️WIP🚧🚧🚧🚧🚧🚧


To add the FractionalSystems.jl, using the Julia package manager:

```julia
Expand Down
2 changes: 1 addition & 1 deletion src/foss/foss.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ end

# Convert fractional order state space to integer state space
function foss2ss(sys::FOSS)
return ss(sys.a, sys.b, sys.c, sys.d, sys.ioDelay)
return ss(sys.a, sys.b, sys.c, sys.d)
end

# Show the created fractional order state space
Expand Down
2 changes: 1 addition & 1 deletion test/foss.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ using Test
@testset "Test FOSS" begin
s = foss([-5 0; 0 -5], [2; 2], [3 3],[0], 0.5, 2, [2], 2)

@test foss2ss(s) == ss([-5 0; 0 -5], [2; 2],[3 3],[0])
@test foss2ss(s) == ss([-5 0; 0 -5], [2; 2], [3 3], [0])
end

2 comments on commit 34e2838

@ErikQQY
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/51028

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 34e2838743e1a5f05075d0174aaf43fbeb31b011
git push origin v0.1.0

Please sign in to comment.