help-octave
[Top][All Lists]
Advanced

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

Re: Octave with eclipse


From: bakerwang
Subject: Re: Octave with eclipse
Date: Fri, 1 Mar 2013 20:05:00 -0800 (PST)

Sarbjit:

I'm just getting started with Octave and Octclipse, trying to run the Fuzzy
Logic Toolkit and having the same problem "No corresponding plugin for
current Octave version." Octclipse starts up ok and I set up the Interpreter
per the instructions. I loaded the Mamdani-tip-demo and tried to run it but
get the "No corresponding plugin for current Octave version" error.

I am running Octave 3.6.2 on a Win7 system, Octclipse version 0.10.1.

I may just be too anxious and I know I should be more patient but Octclipse
looks like such a wonderful tool, that I am impatient to get it running with
the Fuzzy Logic Toolkit.

I also tried a simple m file, the first order system solver from
http://www.math.tamu.edu/~comech/tools/octave-basics/ and got the same error
message, so I know it's not just the Fuzzy Logic Toolkit causing the
problem.

## Octave script for solving dx/dt=v, dv/dt=-x-v/5
## with the built-in lsode solver.
function ret = f(X,t); ret = [X(2),-X(1)-X(2)/5]; end
T=(0:0.2:50)';
X=lsode('f',[-2,0],T);
plot(X(:,1),X(:,2))
pause(60);

So please forgive me for being too impatient.

Thanks very much and hopefully you will be able to repair Octclipse.
John



--
View this message in context: 
http://octave.1599824.n4.nabble.com/Octave-with-eclipse-tp4648729p4650445.html
Sent from the Octave - General mailing list archive at Nabble.com.


reply via email to

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