- From: <Patrick.Stickler@nokia.com>
- Date: Wed, 7 Nov 2001 10:10:28 +0200
- To: melnik@db.stanford.edu
- Cc: phayes@ai.uwf.edu, w3c-rdfcore-wg@w3.org
> > _x rdf:type ComplexNumber > > _x realComponent [ rdf:value "1.0"; rdf:type xsd:decimal ] > > _x imaginaryComponent [ rdf:value "2.0"; rdf:type xsd:decimal ] > > > > or using URV's > > > > _x rdf:type ComplexNumber > > _x realComponent <xsd:decimal:1.0> > > _x imaginaryComponent <xsd:decimal:2.0> Whoops, sorry, shouldn't have used xsd:decimal, but xsd:float... That should have been: _x rdf:type ComplexNumber _x realComponent [ rdf:value "1.0"; rdf:type xsd:float ] _x imaginaryComponent [ rdf:value "2.0"; rdf:type xsd:float ] or using URV's _x rdf:type ComplexNumber _x realComponent <xsd:float:1.0> _x imaginaryComponent <xsd:float:2.0> ;-) Patrick
Received on Wednesday, 7 November 2001 03:11:28 UTC