Skip to content

Commit 13e6357

Browse files
author
Renaud Gaudron
committed
Version 1.5.1
1 parent f13bd73 commit 13e6357

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ OSCILOS is being developed for research. Please [join us](http://www.oscilos.com
1919
* The documentation can be found in the [docs](docs) folder.
2020

2121
## Logging issues and fixing issues
22-
* Please log any issues you find [here](https://github.com/MorgansLab/OSCILOS-long-1.5.0/issues), and don't forget to say what version of Matlab you are using, and what OS.
22+
* Please log any issues you find [here](https://github.com/MorgansLab/OSCILOS-1.2/issues), and don't forget to say what version of Matlab you are using, and what OS.
2323
* Label your issue as a `bug`, `enhancement` etc.
2424
* Developers working on an issue should assign themselves the issue before starting any work.
2525
* Corrections for `bug` issues should be done using GitFlow Hotfix or Bugfix, or in a release branch.
@@ -65,4 +65,4 @@ Error while evaluating uicontrol Callback
6565
6666
## Expected behaviour
6767
Ylim should be adjusted when the plot is a horizontal line
68-
````
68+
````

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020, Imperial College London
1+
Copyright (c) 2014, Imperial College London
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

subProgram/GUI_Fcn/Fcn_Freq/Fcn_DetEqn.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
A1_minus = 1;
4545
A1_plus = R1.*A1_minus;
4646
E1 = 0;
47-
Array_LeftBD = [A1_plus, A1_minus, E1]';
47+
Array_LeftBD = [A1_plus, A1_minus, E1].';
4848
%
4949
D1End = diag([ exp(-s*tau_plus(end)),...
5050
exp( s*tau_minus(end)),...

subProgram/GUI_Fcn/Fcn_Freq/Fcn_DetEqn_Linear.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
A1_minus = 1000;
8383
A1_plus = R1.*A1_minus;
8484
E1 = 0;
85-
Array_LeftBD = [A1_plus, A1_minus, E1]';
85+
Array_LeftBD = [A1_plus, A1_minus, E1].';
8686
%
8787
D1End = diag([ exp(-s*tau_plus(end)),...
8888
exp( s*tau_minus(end)),...

subProgram/GUI_Fcn/Fcn_Freq/Fcn_DetEqn_frozen_nonlinear.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
A1_minus = 1;
8686
A1_plus = R1.*A1_minus;
8787
E1 = 0;
88-
Array_LeftBD = [A1_plus, A1_minus, E1]';
88+
Array_LeftBD = [A1_plus, A1_minus, E1].';
8989
%
9090
D1End = diag([ exp(-s*tau_plus(end)),...
9191
exp( s*tau_minus(end)),...

0 commit comments

Comments
 (0)