RE: incomplete datatyping (was: Re: datatypes and MT)

> >   _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