Hi All,
How can I get learnix copy? And is learnix much different/better than knoppix itself for running radiance?
Regards
ikrima
···
-----Original Message-----
From: [email protected] [mailto:[email protected]]
Sent: 16 June 2015 14:50
To: [email protected]
Subject: Radiance-general Digest, Vol 136, Issue 19
Send Radiance-general mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://www.radiance-online.org/mailman/listinfo/radiance-general
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific than "Re: Contents of Radiance-general digest..."
Today's Topics:
1. Re: Errors while transposing with Rcollate. (Greg Ward)
2. Re: Errors while transposing with Rcollate.
(David Geisler-Moroder)
----------------------------------------------------------------------
Message: 1
Date: Mon, 15 Jun 2015 21:58:40 -0700
From: Greg Ward <[email protected]>
To: Radiance general discussion <[email protected]>
Subject: Re: [Radiance-general] Errors while transposing with
Rcollate.
Message-ID: <[email protected]>
Content-Type: text/plain; charset="windows-1252"
Anyone else have any ideas or suggestions? Honestly, I don't know why redirecting stdin from a file would fail completely. I thought this was supported under Windows.
I'm stumped.
-G
From: "Sarith Subramaniam" <[email protected]>
Subject: Re: [Radiance-general] Errors while transposing with Rcollate.
Date: June 15, 2015 9:45:56 PM PDTHi Greg,
The command that you suggested returns the usage options for rcollate
in windows. (ie. Usage: rcollate [-h[io]???..)Earlier, I had tried feeding the file to rcollate via stdin through using pipe ( | ) as well as the ?type a.txt? shell command in windows but didn?t get it work either way.
Thanks,
SarithFrom: Greg Ward [mailto:[email protected]]
Sent: Tuesday, June 16, 2015 12:04 AM
To: Radiance general discussion
Subject: Re: [Radiance-general] Errors while transposing with Rcollate.Hi Sarith,
This seems related to the broken handling of text versus binary files under Windows. Try reading the file from stdin, instead:
rcollate ?h ?fa1 ?t < a.txt > d.txt
If this works, let me know and I'll see if I can put in a fix.
Cheers,
-GregFrom: "Sarith Subramaniam" <[email protected]>
Subject: [Radiance-general] Errors while transposing with Rcollate.
Date: June 15, 2015 5:09:13 PM PDTHi everyone,
I am trying to do a transpose with rcollate. My operating system is Windows. My file contains rgb triplets arranged in a (8760columns x 60rows) matrix. I either get a ?error loading file into memory? or an incorrect transpose.
I found that I got the same results with a simple ASCII file with tab separated values. My file contains:
1 2 3 4
5 6 7 8
9 10 11 12The following commands return ?error loading file into memory?:
rcollate ?h ?fa1 ?t a.txt >d.txt
rcollate ?h ?fa1 ?ic 4 ?oc 3?t a.txt >d.txt
I found that the ?-t? flag was responsible for the error, so I tried explicitly stating the values for columns and rows as:
rcollate ?h ?fa1 ?ic 4 ?ir 3 ?oc 3 ?ir 4 a.txt>d.txt
This gave me.
1 2 3
4 5 6
7 8 9
10 11 12Am I missing something?
Thanks,
Sarith
_______________________________________________
Radiance-general mailing list
[email protected]
http://www.radiance-online.org/mailman/listinfo/radiance-general
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.radiance-online.org/pipermail/radiance-general/attachments/20150615/b9ed1f79/attachment-0001.html>
------------------------------
Message: 2
Date: Tue, 16 Jun 2015 15:50:19 +0200
From: David Geisler-Moroder <[email protected]>
To: Radiance general discussion <[email protected]>
Subject: Re: [Radiance-general] Errors while transposing with
Rcollate.
Message-ID:
<CA[email protected]>
Content-Type: text/plain; charset="utf-8"
Hi Sarith,
I just tried both calls (with and w/o redirecting from stdin) with the latest Windows binaries from NREL(https://github.com/NREL/Radiance/releases)
and both work fine at my side...
rcollate ?h ?fa1 ?t a.txt > d.txt
rcollate ?h ?fa1 ?t < a.txt > d.txt
Which version of rcollate are you using?
Best,
David
2015-06-16 6:58 GMT+02:00 Greg Ward <[email protected]>:
Anyone else have any ideas or suggestions? Honestly, I don't know why
redirecting stdin from a file would fail completely. I thought this
was supported under Windows.I'm stumped.
-G
*From: *"Sarith Subramaniam" <[email protected]>
*Subject: *Re: [Radiance-general] Errors while transposing with Rcollate.
*Date: *June 15, 2015 9:45:56 PM PDT
Hi Greg,
The command that you suggested returns the usage options for rcollate
in windows. (ie. Usage: rcollate [-h[io]???..)Earlier, I had tried feeding the file to rcollate via stdin through
using pipe ( | ) as well as the ?type a.txt? shell command in windows
but didn?t get it work either way.Thanks,
Sarith
*From:* Greg Ward [mailto:[email protected]]
*Sent:* Tuesday, June 16, 2015 12:04 AM
*To:* Radiance general discussion
*Subject:* Re: [Radiance-general] Errors while transposing with Rcollate.Hi Sarith,
This seems related to the broken handling of text versus binary files
under Windows. Try reading the file from stdin, instead:rcollate ?h ?fa1 ?t < a.txt > d.txt
If this works, let me know and I'll see if I can put in a fix.
Cheers,
-Greg
*From: *"Sarith Subramaniam" <[email protected]>
*Subject: *[Radiance-general] Errors while transposing with Rcollate.
*Date: *June 15, 2015 5:09:13 PM PDT
Hi everyone,
I am trying to do a transpose with rcollate. My operating system is
Windows. My file contains rgb triplets arranged in a (8760columns x
60rows) matrix. I either get a ?error loading file into memory? or an
incorrect transpose.I found that I got the same results with a simple ASCII file with tab
separated values. My file contains:1 2 3 4
5 6 7 8
9 10 11 12
The following commands return ?error loading file into memory?:
*rcollate ?h ?fa1 ?t a.txt >d.txt*
*rcollate ?h ?fa1 ?ic 4 ?oc 3?t a.txt >d.txt*
I found that the ?-t? flag was responsible for the error, so I tried
explicitly stating the values for columns and rows as:*rcollate ?h ?fa1 ?ic 4 ?ir 3 ?oc 3 ?ir 4 a.txt>d.txt*
This gave me.
1 2 3
4 5 6
7 8 9
10 11 12
Am I missing something?
Thanks,
Sarith
_______________________________________________
Radiance-general mailing list
[email protected]
http://www.radiance-online.org/mailman/listinfo/radiance-general_______________________________________________
Radiance-general mailing list
[email protected]
http://www.radiance-online.org/mailman/listinfo/radiance-general
--
Dipl.-Ing. Dr. David Geisler-Moroder
Hofwaldweg 14/20
6020 Innsbruck
Austria
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.radiance-online.org/pipermail/radiance-general/attachments/20150616/9e09e6b0/attachment.html>
------------------------------
_______________________________________________
Radiance-general mailing list
[email protected]
http://www.radiance-online.org/mailman/listinfo/radiance-general
End of Radiance-general Digest, Vol 136, Issue 19
*************************************************
This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it.
Please do not use, copy or disclose the information contained in this
message or in any attachment. Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.
This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system, you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation.