> > _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> ;-) PatrickReceived on Wednesday, 7 November 2001 03:11:28 EST
This archive was generated by hypermail pre-2.1.9 : Wednesday, 3 September 2003 09:42:32 EDT