-
My post in this thread should make it pretty clear why there is no chance of a cooperation:
https://sourceforge.net/projects/scidavis/forums/forum/708155/topic/2993415
In short: Ion Vasilief releases code licensed under the GPL but then tries to prohibit usage of the software in ways the GPL explicitly allows. If you don't do as he wants (i.e. what he considers best for his commercial...
2010-01-07 12:27:23 UTC in SciDAVis
-
Hi,
that is kind of the wrong question. SciDAVis is free software and you are allowed to do anything with it the GPL allows. And, assuming that with "you" you refer to the main developers, I don't see why we would try to "disallow" this.
The real question is: What do you expect to gain from this? If you just want to practice your requirement engineering skills, I'd say: have fun and go for...
2010-01-03 14:16:59 UTC in SciDAVis
-
Dear Vitruss,
you probably mean LabPlot 1.x, which has nothing to do with SciDAVis. We only share code for LabPlot 2.x, which is a complete rewrite and still in a very early state. The code of LabPlot 1.x is incompatible with LabPlot 2/SciDAVis. It may serve as a starting point but it still requires a lot of work to integrate. And, yes, the development requires good knowledge of C++. And in...
2009-11-14 18:55:49 UTC in SciDAVis
-
Dear Vitruss,
it's not as easy as you make it sound to get Origin import working. Actually, it would be a hell lot of work to get a mature import function which enables a "smooth migration".
The only chance to I see for Origin import in SciDAVis is that more programmers join the project. But unfortunately it seems to be a lot easier to get developers join a certain project that demands...
2009-11-14 10:32:22 UTC in SciDAVis
-
Replace the ampersand gt semicolon with a greater than sign.
2009-10-01 18:43:10 UTC in SciDAVis
-
The forum destroyed my formatting :-(
New try:
t = table('Table1')
maxX = 0
maxY = 0
for i in range(0, t.numRows()):
if t.column(0).valueAt(i) > maxX:
maxX = t.column(0).valueAt(i)
if t.column(1).valueAt(i) > maxY:
maxY = t.column(1).valueAt(i)
m = newMatrix('matrix1', maxX, maxY)
for i in range(0, t.numRows())...
2009-10-01 18:40:57 UTC in SciDAVis
-
Hi Andi,
there is no built in function which does this. But you can use a Python script like this:
<pre>
t = table("Table1")
maxX = 0
maxY = 0
for i in range(0, t.numRows()):
if t.column(0).valueAt(i) > maxX:
maxX = t.column(0).valueAt(i)
if t.column(1).valueAt(i) > maxY:
maxY = t.column(1).valueAt(i)
m = newMatrix("matrix1", maxX, maxY...
2009-10-01 18:22:50 UTC in SciDAVis
-
Hi,
since we develop SciDAVis in our spare time, it is hard to say when we find the time to make a new release. The next bugfix release (0.2.4) is probably not so far away. 0.3.0 will only be released when we have new features that are stable enough. We are already working on some nice upcoming features but they are still far from ready for a stable version.
Regards,
Tilman.
2009-09-30 21:21:26 UTC in SciDAVis
-
thzs made 2 file-release changes.
2009-09-30 21:06:01 UTC in SciDAVis
-
thzs made 1 file-release changes.
2009-09-30 20:43:02 UTC in SciDAVis