-
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
-
thzs made 1 file-release changes.
2009-09-30 20:38:01 UTC in SciDAVis
-
The first problem seems to be a known Qt bug:
http://qt.nokia.com/developer/task-tracker/index_html?id=177005&method=entry
As long as the value is only displayed incorrectly but the correct value is used internally, I would say writing a temporary workaround for this is very low priority.
I can't reproduce the second problem, though. Works perfectly on my system.
2009-09-06 13:48:57 UTC in SciDAVis
-
Implemented in rev. 1241
I am no fan of editable combo boxes. I think it is not intuitive that you could possibly edit the contents as most combo boxes are read-only. Therefore, I made an extra edit field.
2009-09-06 13:28:57 UTC in SciDAVis
-
thzs committed revision 1241 to the SciDAVis SVN repository, changing 3 files.
2009-09-06 13:28:17 UTC in SciDAVis