From: Eryn on
Hi All,
I would to know if there ia way to link Matlab coding to the ontology develop in Protege? How could we do that? Or any other way you could suggest.
Thank you in advance.
From: us on
"Eryn " <qzuryna(a)yahoo.com> wrote in message <hqusnc$im2$1(a)fred.mathworks.com>...
> Hi All,
> I would to know if there ia way to link Matlab coding to the ontology develop in Protege? How could we do that? Or any other way you could suggest.
> Thank you in advance.

be more specific(!)...

us
From: Eryn on
OK.
I wrote coding in m.file and would like to call/link to an ontology's content: like property and instance that I've develop by using protege (in owl).
Hope this is more specific now.
Could you help?
Thank you.
-Eryn-

"us " <us(a)neurol.unizh.ch> wrote in message <hqv5js$ejk$1(a)fred.mathworks.com>...
> "Eryn " <qzuryna(a)yahoo.com> wrote in message <hqusnc$im2$1(a)fred.mathworks.com>...
> > Hi All,
> > I would to know if there ia way to link Matlab coding to the ontology develop in Protege? How could we do that? Or any other way you could suggest.
> > Thank you in advance.
>
> be more specific(!)...
>
> us
From: us on
"Eryn " <qzuryna(a)yahoo.com> wrote in message <hr47gj$15c$1(a)fred.mathworks.com>...
> "us " <us(a)neurol.unizh.ch> wrote in message <hqv5js$ejk$1(a)fred.mathworks.com>...
> > "Eryn " <qzuryna(a)yahoo.com> wrote in message <hqusnc$im2$1(a)fred.mathworks.com>...
> > > Hi All,
> > > I would to know if there ia way to link Matlab coding to the ontology develop in Protege? How could we do that? Or any other way you could suggest.
> > > Thank you in advance.
> >
> > be more specific(!)...
> >
> > us
>
> OK.
> I wrote coding in m.file and would like to call/link to an ontology's content: like property and instance that I've develop by using protege (in owl).
> Hope this is more specific now.

no
code(?)...

us
From: Eryn on
Thanks for your respond.
OK, below is the code related. i and j are objects that have real height (Mi and Mj) while hi and hj are height in an image which have been calculated earlier. I need to get the Mi and Mj from the ontology that I've developed as input for this segment. How can I call them from the ontology?.

fprintf(file1,'\n\nMAGNITUDE OF HEIGHT: \n\n');
for i=1:N-1
for j=i+1:N
%magnitude - buang 3*
if ((M(i)>0 && M(j)>0) && (2*(h(j)/h(i))>3*(M(j)/M(i))));
fprintf (file1, '%s is NEARER THAN %s, and %s is FURTHER AWAY than %s.', R{j}, R{i}, R{i}, R{j});
%if ((M(i)>0 && M(j)>0) && ((2*(h(i)/h(j))>3*(M(i)/M(j))) || (2*(h(j)/h(i))>3*(M(j)/M(i)))));
end;
if ((M(i)>0 && M(j)>0) && (2*(h(i)/h(j))>3*(M(i)/M(j))));
fprintf (file1, '%s is NEARER THAN %s, and %s is FURTHER AWAY than %s.', R{i}, R{j}, R{j}, R{i});
end;
end;
end;

Hope you could help. Thank you.


"us " <us(a)neurol.unizh.ch> wrote in message <hr49ef$aqn$1(a)fred.mathworks.com>...
> "Eryn " <qzuryna(a)yahoo.com> wrote in message <hr47gj$15c$1(a)fred.mathworks.com>...
> > "us " <us(a)neurol.unizh.ch> wrote in message <hqv5js$ejk$1(a)fred.mathworks.com>...
> > > "Eryn " <qzuryna(a)yahoo.com> wrote in message <hqusnc$im2$1(a)fred.mathworks.com>...
> > > > Hi All,
> > > > I would to know if there ia way to link Matlab coding to the ontology develop in Protege? How could we do that? Or any other way you could suggest.
> > > > Thank you in advance.
> > >
> > > be more specific(!)...
> > >
> > > us
> >
> > OK.
> > I wrote coding in m.file and would like to call/link to an ontology's content: like property and instance that I've develop by using protege (in owl).
> > Hope this is more specific now.
>
> no
> code(?)...
>
> us