Tilman Benkert

Show:

What's happening?

  • Followup: RE: Transfrom 3 Colums to a Matrix

    Replace the ampersand gt semicolon with a greater than sign.

    2009-10-01 18:43:10 UTC in SciDAVis

  • Followup: RE: Transfrom 3 Colums to a Matrix

    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

  • Followup: RE: Transfrom 3 Colums to a Matrix

    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

  • Followup: RE: New Release 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

  • SciDAVis

    thzs made 2 file-release changes.

    2009-09-30 21:06:01 UTC in SciDAVis

  • SciDAVis

    thzs made 1 file-release changes.

    2009-09-30 20:43:02 UTC in SciDAVis

  • SciDAVis

    thzs made 1 file-release changes.

    2009-09-30 20:38:01 UTC in SciDAVis

  • Comment: format problem in matrix coordinates

    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

  • Comment: There is no way to use custom date-time formats

    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

  • SciDAVis

    thzs committed revision 1241 to the SciDAVis SVN repository, changing 3 files.

    2009-09-06 13:28:17 UTC in SciDAVis

About Me

  • 2006-03-14 (4 years ago)
  • 1476242
  • thzs (My Site)
  • Tilman Benkert

Send me a message