octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: The primary Mingw Octave 2.9.13 binary test


From: Tatsuro MATSUOKA
Subject: Re: The primary Mingw Octave 2.9.13 binary test
Date: Tue, 7 Aug 2007 13:33:21 +0900 (JST)

Dear Michael

Thanks a lot ! Plot was successful owing to your advise!!

The snapshot is 

http://www.geocities.jp/tmacchant/Files/mingwsnap070806.html

The gnuplot was used your binary setting 
gnuplot_binary("C:/programs/octave-2.9.13/bin/pgnuplot")
in octaverc.  Excuse me to use your wgnuplot without your
permission. 

Mkoctfile does not now work well, this will be perhaps
come from path problem.

However, this mingw octave seems much stabler the previous
binary mingw 2.9.4.  Perhaps this is due to the code has
been revised.

I think now is a good chance to challege to make mingw
octave.   Because those who is not expert could built it. 
 
I propose to use GnuWin32 which recudes the difficulty.

http://gnuwin32.sourceforge.net/packages/

I hope more people challange the mingw building.

***********testOregoB.m*************** 
clear;
## The `oregonator'.
##
## Reference:
##
##   Oscillations in chemical systems.  IV.  Limit cycle
behavior in a
##   model of a real chemical reaction. Richard J. Field
and Richard
##   M. Noyes, The Journal of Chemical Physics, Volume 60
Number 5,
##   March 1974.function dx = oregonator_m (x, t)

function dx = oregonator_m (x, t)

  dx = zeros (3, 1);

  dx(1) = 77.27*(x(2) - x(1)*x(2) + x(1) -
8.375e-06*x(1)^2);
  dx(2) = (x(3) - x(1)*x(2) - x(2)) / 77.27;
  dx(3) = 0.161*(x(1) - x(3));

end

% The test of `oregonator'.
x0 = [ 4; 1.1; 4 ];
%t = [0, logspace (-1, log10(303), 150), logspace
(log10(304), log10(500), 150)];
%t=linspace(0,500,1000);
t=0:0.5:500;
ts=time();
y = lsode ('oregonator_m', x0, t);
time()-ts
plot (t',y(:,1),"",t',y(:,2),"",t',y(:,3));
***********testOregoB.m*************** 




*******************************************
  Tatsuro MATSUOKA 
  Email : tmacchant_at_yahoo_dot_co dot_jp
  (_at_ --> @; _dot --> . )
*******************************************

 




--------------------------------------
Easy + Joy + Powerful = Yahoo! Bookmarks x Toolbar
http://pr.mail.yahoo.co.jp/toolbar/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]