Search the web
Sign In
New User? Sign Up
omatrix
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 402 - 439 of 454   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#439 From: "newgbfriend" <newgbfriend@...>
Date: Wed Jul 2, 2008 1:32 am
Subject: I have added you to my friends network today!
newgbfriend
Offline Offline
Send Email Send Email
 
I created this cool friends network and added you to my friends network. Hit-up
now:
http://christina4free.blogspot.com

#438 From: Jim Worthey <jworthey@...>
Date: Mon Jun 23, 2008 2:18 am
Subject: Re: Builting custom functions
balding11
Offline Offline
Send Email Send Email
 
Marcio,
Maybe you are asking how to write a function and
then save it so that it will be called from other
functions, or from a main program.

If function a(x, y, z) calls a function b(u, v,
w), and they are both in the same file, then
function b() must be defined before a() calls it. So b() must appear above a().

That's true, but it's a small part of your work
on a large project. The normal thing is, define
b(u, v, w), or whatever your function is, in a
separate file, and call that file b.oms . The
file b.oms should be in a directory that is in the path.

The naming of functions in Omatrix is
case-sensitive, but the naming of files in
Windows is not case-sensitive. Be consistent
about upper and lower case in defining and calling functions.

The path is defined in autoexec.oms . I prefer
not to keep editing autoexec.oms, so I have a
separate file that is occasionally edited, and
then an include command that brings my personal
file into autoexec.oms, however you would say
that. The personal file includes a statement like this:

path( [ path, ";", NEW_LINE, "C:\science\omjim\color", ...
                          ";", NEW_LINE, "C:\science\omjim\try", ...
                          ";", NEW_LINE, "C:\science\omjim\consistency", ...
                          ";", NEW_LINE, "C:\science\omjim\OrthoModel", ...
                          ";", NEW_LINE, "C:\science\omjim\LED", ...
                          ";", NEW_LINE, "C:\science\omjim\OrthoApps", ...
                          ";", NEW_LINE, "C:\science\omjim\overlap"] )

The effect is to append 7 lines of new material
onto the existing path, and let that longer
string become the path. You can have hundred of
functions in a few folders, according to how you
like to organize your work. So you need not edit
the path very often, and you can work right
along, writing new functions and putting them in new files.

Incidentally, the constant NEW_LINE is defined in autoexec.oms .

Jim Worthey

At 08:27 PM 6/22/2008, you wrote:

>Hi all,
>I'm considering migrating from Matlab to O-matrix and I was trying to
>find information on how i could write customized functions in such a
>way that these functions could be stored somewhere in the computed and
>executed by other functions in a call. The tutorial says it is
>possible, but up to what I understood the functions must be defined
>just before executed. I may have missunderstood that...
>Is it possible to create build in functions with O-matrix?
>Thanks,
>Márcio

Jim W.  ,   http://www.jimworthey.com

James A. Worthey, P.E., Ph.D., jworthey@...

#437 From: Beau Paisley <beau_paisley@...>
Date: Mon Jun 23, 2008 12:38 am
Subject: Re: Builting custom functions
beau_paisley
Offline Offline
Send Email Send Email
 

Marcio,

I'm not sure I understand your question, but O-Matrix includes facilities for creating custom functions, working as a COM client, and serving as a COM server, you might look at:

http://www.omatrix.com/manual/linking.htm

 

Functions can be created with the O-Matrix language, ...

http://www.omatrix.com/manual/userdefined.htm

 

Beau

 



--- On Sun, 6/22/08, marciolegal <marciolegal@...> wrote:

From: marciolegal <marciolegal@...>
Subject: [omatrix] Builting custom functions
To: omatrix@yahoogroups.com
Date: Sunday, June 22, 2008, 5:27 PM

Hi all,
I'm considering migrating from Matlab to O-matrix and I was trying to
find information on how i could write customized functions in such a
way that these functions could be stored somewhere in the computed and
executed by other functions in a call. The tutorial says it is
possible, but up to what I understood the functions must be defined
just before executed. I may have missunderstood that...
Is it possible to create build in functions with O-matrix?
Thanks,
Márcio


#436 From: "marciolegal" <marciolegal@...>
Date: Mon Jun 23, 2008 12:27 am
Subject: Builting custom functions
marciolegal
Offline Offline
Send Email Send Email
 
Hi all,
I'm considering migrating from Matlab to O-matrix and I was trying to
find information on how i could write customized functions in such a
way that these functions could be stored somewhere in the computed and
executed by other functions in a call. The tutorial says it is
possible, but up to what I understood the functions must be defined
just before executed. I may have missunderstood that...
Is it possible to create build in functions with O-matrix?
Thanks,
Márcio

#435 From: "newgefriend" <newgefriend@...>
Date: Thu May 22, 2008 6:24 am
Subject: I have added you to my friends network today!
newgefriend
Offline Offline
Send Email Send Email
 
I created this cool friends network and added you to my friends network. Hit-up
now:
http://ladybug9.topcities.com/girlfriend.htm

#434 From: "newgbfriend" <newgbfriend@...>
Date: Thu May 22, 2008 2:41 am
Subject: I have added you to my friends network today!
newgbfriend
Offline Offline
Send Email Send Email
 
I created this cool friends network and added you to my friends network. Hit-up
now:
http://succubine.topcities.com/girlfriend.htm

#433 From: "girlkirider" <girlkirider@...>
Date: Fri May 2, 2008 2:46 am
Subject: I have added you to my friends network today!
girlkirider
Offline Offline
Send Email Send Email
 
I created this cool friends network and added you to my friends network. Hit-up
now:
http://starangell.topcities.com/girlfriend.htm

#432 From: "kurtforrester" <kurtforrester@...>
Date: Mon Apr 28, 2008 3:28 pm
Subject: Re: Linear Algebra
kurtforrester
Offline Offline
Send Email Send Email
 
One final piece of relevant information that other users may find useful:
http://www.mathworks.com/support/solutions/files/s36851/regstats_details.html

It describes a method to circumvent the rounding errors obtained via
the qr decomposition method.

Kurt

--- In omatrix@yahoogroups.com, "kurtforrester" <kurtforrester@...> wrote:
>
> Beau,
>
> Thanks for the response.
>
> Both methods are supposed to be minimising the sum of squared error
> (SSE) sum(observed_i - predicted_i)^2. Therefore comparing the
> parameter values/confidence interval is not the measure of difference
> in the methods, it should be the SSE.
>
> For the backslash division:
> SSE = 0.759546
>
> For the full wiki method implemented in O-Matrix:
> SSE = 0.96827
>
> Even within computation tolerances the SSE for both methods are far
> from the same (> 25% variation) and it appears that O-Matrix is not
> minimising the objective function to an appropriate tolerance. I am
> just trying to reconcile the differences in the methods.
>
> Yours,
>
> Kurt
>
>
> --- In omatrix@yahoogroups.com, "Harmonic Software" <beau@> wrote:
> >
> > Kurt,
> >
> > Your solutions bhat, i.e.  beta hat in the wiki article I believe
> are within
> > the stated confidence intervals?  I believe that the stated bhat
> values in
> > the wiki article are the confidence intervals, of which the O-Matrix
> > solution gives the estimate.  Will look into that further for you.
> >
> >
> >
> > Beau
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > From: omatrix@yahoogroups.com [mailto:omatrix@yahoogroups.com] On
> Behalf Of
> > kurtforrester
> > Sent: Thursday, April 24, 2008 11:42 AM
> > To: omatrix@yahoogroups.com
> > Subject: [omatrix] Linear Algebra
> >
> >
> >
> > Trying to replicate the example from wikipedia for linear regression
> > using the following O-Matrix script
> > ##### Code Start ###################################
> > height = {1.47, 1.5, 1.52, 1.55, 1.57, 1.60, 1.63, 1.65, 1.68, 1.7,
> > 1.73, 1.75, 1.78, 1.8, 1.83}
> > weight = {52.21, 53.12, 54.48, 55.84, 57.2, 58.57, 59.93, 61.29,
> > 63.11, 64.47, 66.28, 68.1, 69.92, 72.19, 74.46}
> >
> > X = [ones(rowdim(height),1), height, height^2]
> >
> > s = inv(X'*X)
> > bhat = X\weight # Backslash division
> > bhat2 = s*X'*weight # As shown
> > http://en.wikipedia.org/wiki/Linear_regression
> >
> > print bhat
> > print bhat2
> > ##### Code end #####################################
> > # O-Matrix responds
> > ##### Command window output begin ##################
> > {
> > 128.807
> > -143.155
> > 61.9582
> > }
> >
> > {
> > 132.617
> > -147.417
> > 63.0986
> > }
> > ##### Command window output end ##################
> >
> > Why if they are both implementations of linear regression (although
> > different methods) are the results so different?
> >
> > Cheers,
> >
> > Kurt
> >
>

#431 From: "kurtforrester" <kurtforrester@...>
Date: Mon Apr 28, 2008 2:12 pm
Subject: Re: Linear Algebra
kurtforrester
Offline Offline
Send Email Send Email
 
Beau,

Another follow-up about the least squares regression issue.

Quoting from the matlab website.
"Use the MATLAB® backslash operator (mldivide) to solve a system of
simultaneous linear equations for unknown coefficients. Because
inverting X'*X can lead to unacceptable rounding errors, the backslash
operator uses QR decomposition with pivoting, which is a very stable
algorithm numerically."

That about seems to cover the problem.

Cheers,

Kurt

--- In omatrix@yahoogroups.com, "kurtforrester" <kurtforrester@...> wrote:
>
> Beau,
>
> Thanks for the response.
>
> Both methods are supposed to be minimising the sum of squared error
> (SSE) sum(observed_i - predicted_i)^2. Therefore comparing the
> parameter values/confidence interval is not the measure of difference
> in the methods, it should be the SSE.
>
> For the backslash division:
> SSE = 0.759546
>
> For the full wiki method implemented in O-Matrix:
> SSE = 0.96827
>
> Even within computation tolerances the SSE for both methods are far
> from the same (> 25% variation) and it appears that O-Matrix is not
> minimising the objective function to an appropriate tolerance. I am
> just trying to reconcile the differences in the methods.
>
> Yours,
>
> Kurt
>
>
> --- In omatrix@yahoogroups.com, "Harmonic Software" <beau@> wrote:
> >
> > Kurt,
> >
> > Your solutions bhat, i.e.  beta hat in the wiki article I believe
> are within
> > the stated confidence intervals?  I believe that the stated bhat
> values in
> > the wiki article are the confidence intervals, of which the O-Matrix
> > solution gives the estimate.  Will look into that further for you.
> >
> >
> >
> > Beau
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > From: omatrix@yahoogroups.com [mailto:omatrix@yahoogroups.com] On
> Behalf Of
> > kurtforrester
> > Sent: Thursday, April 24, 2008 11:42 AM
> > To: omatrix@yahoogroups.com
> > Subject: [omatrix] Linear Algebra
> >
> >
> >
> > Trying to replicate the example from wikipedia for linear regression
> > using the following O-Matrix script
> > ##### Code Start ###################################
> > height = {1.47, 1.5, 1.52, 1.55, 1.57, 1.60, 1.63, 1.65, 1.68, 1.7,
> > 1.73, 1.75, 1.78, 1.8, 1.83}
> > weight = {52.21, 53.12, 54.48, 55.84, 57.2, 58.57, 59.93, 61.29,
> > 63.11, 64.47, 66.28, 68.1, 69.92, 72.19, 74.46}
> >
> > X = [ones(rowdim(height),1), height, height^2]
> >
> > s = inv(X'*X)
> > bhat = X\weight # Backslash division
> > bhat2 = s*X'*weight # As shown
> > http://en.wikipedia.org/wiki/Linear_regression
> >
> > print bhat
> > print bhat2
> > ##### Code end #####################################
> > # O-Matrix responds
> > ##### Command window output begin ##################
> > {
> > 128.807
> > -143.155
> > 61.9582
> > }
> >
> > {
> > 132.617
> > -147.417
> > 63.0986
> > }
> > ##### Command window output end ##################
> >
> > Why if they are both implementations of linear regression (although
> > different methods) are the results so different?
> >
> > Cheers,
> >
> > Kurt
> >
>

#430 From: "kurtforrester" <kurtforrester@...>
Date: Mon Apr 28, 2008 10:30 am
Subject: Re: Linear Algebra
kurtforrester
Offline Offline
Send Email Send Email
 
Beau,

Thanks for the response.

Both methods are supposed to be minimising the sum of squared error
(SSE) sum(observed_i - predicted_i)^2. Therefore comparing the
parameter values/confidence interval is not the measure of difference
in the methods, it should be the SSE.

For the backslash division:
SSE = 0.759546

For the full wiki method implemented in O-Matrix:
SSE = 0.96827

Even within computation tolerances the SSE for both methods are far
from the same (> 25% variation) and it appears that O-Matrix is not
minimising the objective function to an appropriate tolerance. I am
just trying to reconcile the differences in the methods.

Yours,

Kurt


--- In omatrix@yahoogroups.com, "Harmonic Software" <beau@...> wrote:
>
> Kurt,
>
> Your solutions bhat, i.e.  beta hat in the wiki article I believe
are within
> the stated confidence intervals?  I believe that the stated bhat
values in
> the wiki article are the confidence intervals, of which the O-Matrix
> solution gives the estimate.  Will look into that further for you.
>
>
>
> Beau
>
>
>
>
>
>
>
>
>
> From: omatrix@yahoogroups.com [mailto:omatrix@yahoogroups.com] On
Behalf Of
> kurtforrester
> Sent: Thursday, April 24, 2008 11:42 AM
> To: omatrix@yahoogroups.com
> Subject: [omatrix] Linear Algebra
>
>
>
> Trying to replicate the example from wikipedia for linear regression
> using the following O-Matrix script
> ##### Code Start ###################################
> height = {1.47, 1.5, 1.52, 1.55, 1.57, 1.60, 1.63, 1.65, 1.68, 1.7,
> 1.73, 1.75, 1.78, 1.8, 1.83}
> weight = {52.21, 53.12, 54.48, 55.84, 57.2, 58.57, 59.93, 61.29,
> 63.11, 64.47, 66.28, 68.1, 69.92, 72.19, 74.46}
>
> X = [ones(rowdim(height),1), height, height^2]
>
> s = inv(X'*X)
> bhat = X\weight # Backslash division
> bhat2 = s*X'*weight # As shown
> http://en.wikipedia.org/wiki/Linear_regression
>
> print bhat
> print bhat2
> ##### Code end #####################################
> # O-Matrix responds
> ##### Command window output begin ##################
> {
> 128.807
> -143.155
> 61.9582
> }
>
> {
> 132.617
> -147.417
> 63.0986
> }
> ##### Command window output end ##################
>
> Why if they are both implementations of linear regression (although
> different methods) are the results so different?
>
> Cheers,
>
> Kurt
>

#429 From: "Harmonic Software" <beau@...>
Date: Sun Apr 27, 2008 12:13 am
Subject: RE: Linear Algebra
beau_paisley
Offline Offline
Send Email Send Email
 

Kurt,

Your solutions bhat, i.e.  beta hat in the wiki article I believe are within the stated confidence intervals?  I believe that the stated bhat values in the wiki article are the confidence intervals, of which the O-Matrix solution gives the estimate.  Will look into that further for you.

 

Beau

 

 

 

 

From: omatrix@yahoogroups.com [mailto:omatrix@yahoogroups.com] On Behalf Of kurtforrester
Sent: Thursday, April 24, 2008 11:42 AM
To: omatrix@yahoogroups.com
Subject: [omatrix] Linear Algebra

 

Trying to replicate the example from wikipedia for linear regression
using the following O-Matrix script
##### Code Start ###################################
height = {1.47, 1.5, 1.52, 1.55, 1.57, 1.60, 1.63, 1.65, 1.68, 1.7,
1.73, 1.75, 1.78, 1.8, 1.83}
weight = {52.21, 53.12, 54.48, 55.84, 57.2, 58.57, 59.93, 61.29,
63.11, 64.47, 66.28, 68.1, 69.92, 72.19, 74.46}

X = [ones(rowdim(height),1), height, height^2]

s = inv(X'*X)
bhat = X\weight # Backslash division
bhat2 = s*X'*weight # As shown
http://en.wikipedia.org/wiki/Linear_regression

print bhat
print bhat2
##### Code end #####################################
# O-Matrix responds
##### Command window output begin ##################
{
128.807
-143.155
61.9582
}

{
132.617
-147.417
63.0986
}
##### Command window output end ##################

Why if they are both implementations of linear regression (although
different methods) are the results so different?

Cheers,

Kurt


#428 From: "kurtforrester" <kurtforrester@...>
Date: Thu Apr 24, 2008 5:42 pm
Subject: Linear Algebra
kurtforrester
Offline Offline
Send Email Send Email
 
Trying to replicate the example from wikipedia for linear regression
using the following O-Matrix script
##### Code Start ###################################
height  = {1.47, 1.5, 1.52, 1.55, 1.57, 1.60, 1.63, 1.65, 1.68, 1.7,
1.73, 1.75, 1.78, 1.8, 1.83}
weight  = {52.21, 53.12, 54.48, 55.84, 57.2, 58.57, 59.93, 61.29,
63.11, 64.47, 66.28, 68.1, 69.92, 72.19, 74.46}

X = [ones(rowdim(height),1), height, height^2]

s     = inv(X'*X)
bhat  = X\weight  # Backslash division
bhat2 = s*X'*weight # As shown
http://en.wikipedia.org/wiki/Linear_regression

print bhat
print bhat2
##### Code end #####################################
# O-Matrix responds
##### Command window output begin ##################
{
128.807
-143.155
61.9582
}

{
132.617
-147.417
63.0986
}
##### Command window output end ##################

Why if they are both implementations of linear regression (although
different methods) are the results so different?

Cheers,

Kurt

#427 From: "kurtforrester" <kurtforrester@...>
Date: Tue Apr 15, 2008 6:35 pm
Subject: O-Matrix dll linking functionality
kurtforrester
Offline Offline
Send Email Send Email
 
I had some correspondence with Beau from Harmonic about compiling user
functions in C/C++ with the free compiler command line gcc in cygwin.
Below is the summary of the problem/solution.

Cheers,

Kurt
-----------------------------------

I initially tried to compile the code in cygwin with gcc (3.4.4) and
the dll that was created just froze O-Matrix when it was called (no
errors just freeze).

I later read that linking from VC/VC++ compiled programs can be
difficult from gcc (sometime it works sometimes it does not).  A work
around is to use mingw from within cygwin. Below are the commands that
I used to generate the dll that worked.

In cygwin I moved to the directory containing the c++ files that I
wanted to put into the dll(note that mno-cygwin is the mingw flag).

$ gcc -mno-cygwin -c MYCOLMAX.CPP

this creates an object file MYCOLMAX.o

$ gcc -mno-cygwin -shared MYCOLMAX.o -o SAMPLE.dll

this produces the dll (SAMPLE.dll)

Calling this dll from O-Matrix produces the same response as the
SAMPLE.dll supplied.

You could additionally add maths optimisation/optimization flags to
the compiling and linking commands to make the dll to run faster.

Hope this helps others working in this area.

#426 From: "Harmonic Software" <beau@...>
Date: Mon Apr 14, 2008 10:05 pm
Subject: O-Matrix <-> Matlab function
beau_paisley
Offline Offline
Send Email Send Email
 
We have been getting quite a few prospects asking what the correspondence is
between O-Matrix and Matlab functions so we added the following summary,
http://www.omatrix.com/manual/om2matlab.htm

#425 From: "Harmonic Software" <beau@...>
Date: Thu Apr 10, 2008 7:28 pm
Subject: FAQ added to web site
beau_paisley
Offline Offline
Send Email Send Email
 
We added an FAQ to the website at: http://www.omatrix.com/faq.html

Please let me know if you have suggested additions.

Beau Paisley
www.omatrix.com

#424 From: Total Task <jobbywobby161@...>
Date: Thu Dec 31, 2009 4:40 am
Subject: Overseas & Local Jobs Available.
jobbywobby161
Offline Offline
Send Email Send Email
 
#423 From: Lets Migrate <jobbywobby161@...>
Date: Thu Dec 31, 2009 4:40 am
Subject: Free Immigration Help For UK, USA, Australia and Canada.
jobbywobby161
Offline Offline
Send Email Send Email
 
Hi All,
Sometimes when you go to new place, you suddenly become lucky, why not give it a
try.

http://www.4migration.com/?mem=3006

Thanks

#422 From: High Paying <jobbywobby161@...>
Date: Thu Dec 31, 2009 4:40 am
Subject: Highly Paid Education Degrees.
jobbywobby161
Offline Offline
Send Email Send Email
 
There are many choices available and this is right aproach that first research
about degree and than get one.

Master, Bachelor, Associate and Phds:
http://www.degreexs.com/?aff=4837

#421 From: "newgbfriend" <newgbfriend@...>
Date: Thu Apr 3, 2008 10:37 am
Subject: I have added you to my friends network today!
newgbfriend
Offline Offline
Send Email Send Email
 
I created this cool friends network and added you to my friends network. Hit-up
now:
http://snakesarefun.tripod.com/girlfriend.htm

#420 From: "Harmonic Software" <beau@...>
Date: Tue Apr 1, 2008 7:05 pm
Subject: O-Matrix 6.4 Press release
beau_paisley
Offline Offline
Send Email Send Email
 
#419 From: "Harmonic Software" <beau@...>
Date: Fri Feb 29, 2008 12:18 am
Subject: Seeking Statistics Toolbox Author
beau_paisley
Offline Offline
Send Email Send Email
 

We have been seeing an increasing demand for specialized and more statistics capability in O-Matrix.  We have decided that the best approach to address this is providing a statistics toolbox in a similar fashion as the “STSA, The Time Series Toolbox”,  http://www.omatrix.com/stsa.html,  “IPT- The Image Processing Toolbox”, http://www.omatrix.com/ipt.html, and “SPT – The Signal Processing Toolbox”,  http://www.omatrix.com/spt.html

 

 

We have a general outline of what this needs to include and we are soliciting current, (or new) users that would be interested in this project.  As a toolbox author you receive a percentage of gross sales, and we provide support throughout your development effort.  If you might be interested, please contact Beau Paisley, beau@...

 

 


#418 From: "Harmonic Software" <beau@...>
Date: Tue Feb 26, 2008 5:28 pm
Subject: FW: Number crunching test report V5 - final version / published
beau_paisley
Offline Offline
Send Email Send Email
 

 

Hello everyone,

 

as announced I have published the final version of my test report today.

It is available as PDF document at:

 

http://www.scientificweb.com/ncrunch/index.html

 

Older editions and all benchmark routines are also available over this URL.

 

Regards,

Stefan Steinhaus

 

===================================================================

 Stefan Steinhaus / Germany

 stefan@...

===================================================================

 Homepage       : http://www.steinhaus-net.de

 Scientific Web : http://www.scientificweb.de

                  http://www.scientificweb.com

===================================================================

 


#417 From: "girlkirider" <girlkirider@...>
Date: Mon Feb 25, 2008 4:31 pm
Subject: I have added you to my friends network today!
girlkirider
Offline Offline
Send Email Send Email
 
I created this cool friends network and added you to my friends network. Hit-up
now:
http://lindseysr.tripod.com/girlfriend.htm

#416 From: "Harmonic Software" <beau@...>
Date: Wed Dec 26, 2007 5:45 pm
Subject: O-Matrix Subscription Moderation to reduce group SPAM
beau_paisley
Offline Offline
Send Email Send Email
 

We did not want to intervene with the omatrix news group and provide any moderation but the amount of spam recently has become overwhelming so we now require that all enrollments be manually approved.    We have been doing this for about a week now and the spam seems to have stopped for now.

 

Beau Paisley

www.omatrix.com

 

 


#415 From: "Harmonic Software" <beau@...>
Date: Fri Dec 21, 2007 6:37 pm
Subject: O-Matrix Version History
beau_paisley
Offline Offline
Send Email Send Email
 

We have not provided much announcement history for the last couple versions of O-Matrix so we have

Created the following version history document which will be part of the release going forward:

 

Version 6.3:

Performance enhancements, some bug fixes, Vista, and support

for the new Image Processing Toolbox

===========================================

- Support for the IPT includes:

. Bundling of the O-Matrix

Data Visualizer, http://www.omatrix.com/datavis.html

.O-Matrix functions for loading image files such as

gif, png, and jpeg

. O-Matrix functions for manipulating palettes

- Performance Enhancements:  This list is not exhaustive

but the following functions and operations are among the most

improved: sort(), fft(), dft(), ceil(), floor(), round(), max(),

reverse(), log(), log2(), trig functions,

complex-valued arithmetic, and type casting.

- New Special Functions, http://www.omatrix.com/manual/special.htm

psi(), besseli(), besselk(), hypot()

- Validation testing of O-Matrix for Windows Vista

- Some failure to release memory bugs in the statistics

distribution functions, http://www.omatrix.com/manual/statistics.htm

were fixed.

 

Version 6.2:

Additions to support the integration of the Tecplot graphing

package from Tecplot Inc., www.tecplot.com

===========================================

- An RPC server that enables the communication of data and

commands between O-Matrix and Tecplot.  This server is

implemented as a Tecplot add-on and provided in the

omwin\dll\omlink.dll file.  Configuration and installation

instructions are provided with the Tecplot distribution.

- The O-Matrix, client side functions for communicating with

Tecplot are documented at: http://www.omatrix.com/manual/tecplot.htm

And the O-Matrix functions are provided in the omwin\tecplot

directory.

- A detailed user story applying this technology was published

in the December 2007 issue of Desktop Engineering in the

article "Tecplot Shows Wind Shear".  Text of the article is at:

http://www.deskeng.com/articles/aaagcr.htm

and

http://www.tecplot.com/showcase/studies/2007/Grace.htm


#414 From: Beau Paisley <beau_paisley@...>
Date: Fri Dec 21, 2007 4:35 pm
Subject: Re: debugging code
beau_paisley
Offline Offline
Send Email Send Email
 
PC,
You can single-step O-Matrix code with the 'step' command,
There is not a F key available but you can access the command through the Debug
window with, Alt-D,S
 


pc_panchariya <pc_panchariya@...> wrote:
Hi,
I want to debug (single steping)o-matrix codes like in Matlab just by
simply pressing F9, F8, F5 keys (equivalent keys for commands). Let me
know if someone know it.
PC



#413 From: "pc_panchariya" <pc_panchariya@...>
Date: Fri Dec 21, 2007 6:31 am
Subject: debugging code
pc_panchariya
Offline Offline
Send Email Send Email
 
Hi,
I want to debug (single steping)o-matrix codes like in Matlab just by
simply pressing F9, F8, F5 keys (equivalent keys for commands). Let me
know if someone know it.
PC

#412 From: "Beau" <beau@...>
Date: Thu Dec 20, 2007 8:49 pm
Subject: Free Image Processing Toolbox License for O-Matrix Customers
beau_paisley
Offline Offline
Send Email Send Email
 
With the release of "IPT - The Image Processing
Toolbox for O-Matrix", http://www.omatrix.com/ipt.html
we are now in the mode of gathering feedback of how
the toolbox is, and can be used for real-world image
processing applications.

Our existing customers have always been the source of some
of our most valuable product feedback so we are offering a
free IPT license to existing customers that are willing to
give IPT a try and provide at least one of the following inputs:
- A summary of your application including how your implementation
compares to other options you considered.
- A testimonial of how IPT benefitted you, and which we can use
on our web page and marketing efforts.
- A case-study similar to those at:
http://www.omatrix.com/userstories.html

To qualify for the free license you must:
1) Have a current O-Matrix license.  If you do not have the current
6.3 release, please see the "Customer Upgrades" entry at
http://www.omatrix.com/howorder.html to obtain discounted upgrade
pricing.
2) We must receive your feedback by January 21, 2008


Please download IPT from, http://www.omatrix.com/downloads/IPTDemo.ZIP
This is a demo version which will time out in 30 days but it is fully
functional.  We will get you an unrestricted license as soon as we get
one of the feedback options.

#407 From: "Beau" <beau@...>
Date: Mon Nov 19, 2007 5:16 pm
Subject: New: Image Processing Toolbox for O-Matrix
beau_paisley
Offline Offline
Send Email Send Email
 
Harmonic Software has released "IPT - The Image Processing
Toolbox for O-Matrix". IPT provides a comprehensive set of
functions for image manipulation and analysis. The IPT capabilities
include image file I/O, color space transformations, linear
filtering,
image transformations, mathematical morphology, image enhancement, and
image analysis.

IPT is multi-threaded, uses SIMD technology, and is built with
leading-edge
image processing algorithms to provide execution performance and
efficiency
that far exceeds other toolbox and stand-alone image processing
solutions.
View the IPT benchmarks and performance details at:
http://www.omatrix.com/iptbench.html

IPT is priced at only $200 for commercial users, with disounts
available for
academic and government agency customers.

The Image Processing Toolbox enables the development of analysis
and turnkey solutions in a broad range of industries including:
- Medical Imaging
- Microscopy
- Industrial Inspection and Measurement
- Surveillance
- Biometrics

Further product details and ordering information is available at:
http://www.omatrix.com/ipt.html

#402 From: "Beau" <beau@...>
Date: Mon Sep 24, 2007 12:20 am
Subject: FFT samples/benchmarks
beau_paisley
Offline Offline
Send Email Send Email
 
We have made some significant improvements to the performance of the
FFT functions in O-Matrix for the next release but we have been
profiling "real world" applications to see what other areas in
relation to the use of FFTs may be enhanced.

If you have a "FFT-centric" application it would be greatly
appreciated if you forward me a stand-alone sample of your application
which we may use for profiling purposes.

Thanks,
Beau

Messages 402 - 439 of 454   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help