I use O-matrix to do research on lighting, color, and related topics. Are others doing similar work? You can see some of my results at www.jimworthey.com...
I was asked the question above and thought I would try replying on the new users group news: I believe that the most efficient way (in O-Matrix) to sum the...
Brad Bell
bradley_bell@...
Sep 19, 2003 6:51 pm
3
i'm trying to read a file as a sequence of bytes. i don't know the the size, structure or content of the file. i'm trying to use bread. everything is ok until...
The bread() function does not provide EOF checking. You can obtain the file size using the system dir function. The source code for bread is provided in...
If you want to determine the file length from within O-Matrix you may also use lenfile(), ... http://www.omatrix.com/manual/lenfile.htm ... obtain ... runs...
Hi folks, I'm the writer of the EAS add-on for O-Matrix. If anyone has any questions regarding EAS, how to use it, or suggestions for new features please feel...
The first thing to verify is that you are running your script in mlmode, (Matlab mode), http://www.omatrix.com/manual/mlmode.htm You might try a short script...
For mult-way branches, I'm accustomed to the if-elseif-else and the switch-case constructs in C and Matlab. Does O-Matrix somehow support these constructs...
O-Matrix implements the if-elseif-else construct in omatrix mode as, x = 0 if x < 0 then begin "negative" end else if x > 0 then begin "positive" end else...
hello everybody!! this is yogender frm norfolk,va.am doing my Masters in mechanical engineering at Old dominion university.actually am familiar with a few...
hello everybody!! this is yogender frm norfolk,va.am doing my Masters in mechanical engineering at Old dominion university.actually am familiar with a few...
Much appreciated if O-Matrix customers provide Yogender input. 1) O-Matrix provides an interpreted language that resembles mathematics notation and makes it...
... engineering at Old dominion university.actually am familiar with a few mech softwares ... ... Yogender, I have a lot of fun with O-matrix. You can see...
yogender, I initially started using O-Matrix about 5-6 years ago when I was studying for my Masters in Mech Eng. I found it to be very useful for writing data...
Hello, Maybe we could get more activity if omatrix users could describe some of their favorite applications they have created and maybe even post them on an...
Allan, Thank you for the suggestion. We are currently considering what new features to add to O-Matrix, and if users could give a description of their work...
Allan, I'm not sure what to expect if our O-Matrix chat begins to "rock," but it might be fun to see a little more activity. Message #1 is from me, and...
Hello, I am in the middle of an evaluation of O-Matrix for the North Orange County (California) Computer Club. While there are many features I like about...
Hi, I'm a long time Matlab user, but relatively new to Omatrix. I am able to save graphics files in various formats in Matlab, but I haven't been able to find...
John Molyneux
jem@...
Oct 17, 2003 12:46 am
22
O-Matrix doesn't provide a function for directly saving in different formats. The easiest approach is to use gcopy to copy the plot to the clipboard and then...
We have started official beta testing of STSA, The Statistical Times Series Analysis Toolbox for O-Matrix. You can find a description of the toolbox at: ...
Hello. I'd like to try the Brent's Method to solve a system of nonlinear equations, but I do not understand the parameter fval. What is the meaning of this...
The paramter fval is an O-Matrix function. In the example on http://www.omatrix.com/manual/brent.htm the parameter fval is the fucntion function f(x) begin ...
Brad Bell
bradley_bell@...
Oct 19, 2003 2:08 am
29
I still don't understand. Brent does the same thing as newton raphson or it has other purpose?...