Peter M. Groen
/
openbr
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
c00e82262d2e34e66ed1956e4fa738ce23a77e3e
Authored by
Brendan Klare
2014-01-31 13:15:45 -0500
1 parent
a95142bf
linspace bug fix
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
openbr/core/common.cpp
openbr/core/common.cpp
View file @
c00e822
...
...
@@ -74,4 +74,5 @@ QList<float> linspace(float start, float stop, int n) {
74
74
spaced.append(curValue += delta);
75
75
}
76
76
spaced.append(stop);
77
+ return spaced;
77
78
}
...
...