MATH AND STATISTICAL COMPONENT
hey guys,
i really found this tool interesting... i wanna share with u all...
hope u ll enjoy this tool......
StatMax - Statistics & Finance Software
StatMax Component, containing over 70 computational tools, is an
ActiveX in process server (DLL) or DCOM component which can be used by
any OLE auto mation client or other COM component, including a VB
application, a Word document or Excel spreadsheet using VBScript, or
any other application or component written in a COM-compliant
language.
The mathematical computations are provided categorized as:
Permutations Combinations,
|
3/1/2010 6:40:48 AM
|
0
|
Alice <sai...@sofist.com>
|
|
|
Adding dashed line on plot2d figure
I would like to add a dashed line at -1,1 and 0 on my famous variable
Fr's plot.
Here is that part of the script
xset("window",0); plot2d(e, Fr,0); l=gca();db=l.data_bounds;db(:,
2)=[-10;10];l.data_bounds=db; l.tight_limits = "on";
xset("thickness",2);xset("line style",
4);plot2d(e,-1*ones(1:10000));plot2d(e,
1*ones(1:10000));plot2d(e,zeros(1:10000));
xset("window",1);plot2d(q,e(1:ind(1)),0);plot2d(-q,e(1:ind(1)),0);
I try to achieve it by using xset("line style" , 4) ; function but I
realize that xset function refers not only to the lines -1,1 and 0 it
also refers to axes lin
|
2/27/2010 1:07:11 PM
|
0
|
=?ISO-8859-1?Q?T=F6re_Han?= <toreh...@gmail.com>
|
Adding lines to a Graph
Hi,
I'm new to scilab and I need to know how to add a vertical line to a
graph. For example, I want to graph a vertical line at x=2 on the
graph of a sinusoid. How do I do this?
Thanks,
PPR
|
2/26/2010 6:20:45 PM
|
0
|
Steve <srussel...@regis-nyc.org>
|
Starting Windows EXE programs
How would I start windows executable application,
am I supposed to use the unix, unix_g or unix_w to do that ?
In Scilab 5.x, would unix('my_program.exe') start the windows
executable (I have win XP) ?
Thanks for advice !
|
2/26/2010 4:57:31 PM
|
0
|
velkypivo <velkyp...@yahoo.com>
|
contolling the axes boundaries
How can I control the boundary of the y axis? I mean my actual data in
range of -5 and 30 but I want to be showed in the graphic window
between -10 and 10.
is it possible?
Torehan
|
2/26/2010 4:20:28 PM
|
0
|
=?ISO-8859-1?Q?T=F6re_Han?= <toreh...@gmail.com>
|
octal format in msprintf
I am trying to print some numbers in octal format, which I should be
able to do by using msprintf. At least that=B4s what the help entry for
printf_conversion says.
But unfortunately, when I try this, I get told, that the '%o' format
string is not allowed for that method:
msprintf('%o',8)
!--error 998
msprintf: ein Fehler ist aufgetreten: 'o' Format nicht erlaubt.
Is there another option to solve this problem?
Thanks in advance,
Piet
|
2/24/2010 8:09:37 AM
|
0
|
Piet <piet_markm...@web.de>
|
Scilab 5.x Performance
Hi Scilab,
I know this subject came up here but the question is still unanswered.
After installing the latest Scilab release (5.2.1) and running one of
my performance simulations I found out that the new version
performance is about 50% of the 4.1.2 version!
For me this is like saying you cannot run these simulations. Some of
my performance evaluations takes a week to run with the 4.1.2 version
assuming nothing else crashes.
My question is will Scilab ever return BACK to its old performance or
is it doomed?
I like Scilab and not very interested to find an alternative.
Moti
|
2/24/2010 7:25:01 AM
|
0
|
Moti Litochevski <motil...@gmail.com>
|
Me again!
How can I define a 106 dimesional vector with same values for each
dimension? Is it possible in Scilab?
Thanks
Torehan
|
2/23/2010 3:30:04 PM
|
0
|
=?ISO-8859-1?Q?T=F6re_Han?= <toreh...@gmail.com>
|
Kronig - Penney Model with Scilab
I'm a newbie on Scilab and please don't mind if I ask some silly
questions.
I'm trying to reproduce some band structure figures using Kronig -
Penney model (Kittel Chapter 7, Introduction to Solid State Physics
8th Ed.)
In order to obtain these figure I have created a .sci script file.
Here is the script...
m=9.10938188e-31;
hbar=1.05457148e-34 ;
eV=1.60217646e-19;
Vo=10*eV;
e=[0:0.01:10];
E=e*eV;
a=5.0e-10;
b=1.5e-10;
t=a+b;
funcprot(0)
function alpha=alpha(E); alpha = sqrt(2*m*E)/hbar; endfunction
function beta=beta(E); beta = sqrt(2*m*(Vo-E))/hbar; endfunction
function
|
2/22/2010 5:27:12 PM
|
0
|
=?ISO-8859-1?Q?T=F6re_Han?= <toreh...@gmail.com>
|
Hamilton bellman jacobi pde package for closed-loop optimal control
Geetings!
I am looking for a package that solves Hamilton bellman jacobi pde
for closed-loop optimal control. Any pointers on tthis will be
appreciated.
Can Matlab packages on the above subject be translated to scilab? Has
any been done?
Thanks.
|
2/18/2010 3:28:49 PM
|
0
|
salehh229 <salehh...@gmail.com>
|
code generation embedded coder with scicos
Hallo all,
i have some quistions about code generation with scicos.
my operating system is MS windows XP and i am using scicoslab 4.4.
well i want to generate C code for the micro controler blackfin 561
which has the operatingsystem uclinux.
-how can i get a makfile for unix, while i am working with windows?
-and where can i find the template makefiles for the generated make
files.
-how can i get only the c code without that object file appear, that
means without the compiler generate these object files, because in
simulink i could get only the c code and then make the whole proj
|
2/18/2010 12:01:41 PM
|
0
|
"inf.mohammad" <modial...@hotmail.com>
|
Equivalent for Matlab 'axis equal'
Hi all,
I am a regular user of scilab. I need to plot a lot of Mohr's circles
(for 2D state of stress), where scale of x and y axis must be equal.
In matlab there is 'axis equal' command, to be used after plot
command. Is there any scilab equivalent or any other trick to achieve
the same effect?
Thanks
|
2/17/2010 11:23:00 AM
|
0
|
Sukumar <sukumar.bais...@gmail.com>
|
Color of surface plot
Hi,
I'm plotting a surface with the following command:
surf(x1,x2,ones(length(x1),length(x2)).*4.5)
I've read the help system over and over, but I don't understand how to
controle the color of the surface. Could anyone please explain how to
change the color to white or to transparent (only the line visible)?
Tank you very much!
|
2/17/2010 8:27:10 AM
|
0
|
B_Mayer_1...@web.de
|
DTMF signal decoder help
Hi, I am new to Scilab and i'm reaching the end of the semester. For a
final work my Professor gave us a project entitled Decoding telephone
sequence DTMF, and what you have to do is, Given an audio stream with
a DTMF telephone signal, corrupted with noise, make a program in
Scilab that detects the number being dialed. I'm here to ask help to
All who are willing to help me make this.Really don't know where to
get started.
Thanks
|
2/11/2010 6:09:35 PM
|
0
|
Ntonio <sum0llat...@gmail.com>
|
3D plot
Hello,
I'm generating a CSV file for a digital elevation model.
It works fine but I'd like to plot 3D plots (not surface) in Scilab
to check the generated file.
I haven't the finest idea how to do it.
plot3d draw a surface but my X,Y vectors are not monotone
An idea could be to draw dots (points) instead of surface in a 3d
space
I have a look at param3d but it draws curve in 3d space... not dots !
How could I achieve this :
here is the code :
// Generation du maillage d'un terrain
// definition d'un profil et extrusion
clear
xmin = 0;
xmax = 100;
ymin = 0;
|
2/11/2010 9:32:44 AM
|
0
|
"no...@nowhere.undef" <s.cel...@gmail.com>
|
help needed for a grep in a multidimensional struct array
Hi,
I have the following problem.
I have the following variable:
slot =
30x5x10 struct array with fields:
modulo
cdl
I need to find all the indexes for which the field cdl matches a
specific grep command.
I would like to know if is it possible to have a function such as:
out = grep(slot.cdl, "abc")
Any hint?
Thanks in advance,
g.
|
2/11/2010 9:03:07 AM
|
0
|
ga <antonelli1...@gmail.com>
|
C Implementation of IfThenElse/ESelect in Scicos
Hi all,
during implementation of a Scicos block to read sensors, I came across
the problem to handle errors. So it would be a good idea to rise
output events in case the Scicos block detect any error (e.g. the
sensor is disconnected).
But I have no glue how to implement an synchronous output event (the
block already have an input event as trigger) in C.
I tried to reverse engineer the IfThenElse an ESelect blocks, but they
are written in Fortran and I was not able to transfer this to C.
So here are my questions:
1. What to put into a *.sci file to get an output event and still be
ab
|
2/9/2010 3:50:42 PM
|
0
|
skgski3d <achi...@googlemail.com>
|
Format convertion
Hi!
I=92m learning Scilab.
Is there a short record of format convertion?
For instance: Ydata=3D msscanf (Xdata, =91%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e
%e%e%e%e%e%e%e%e%e%e%e%e=92)
To write it down, like Ydata=3D msscanf (Xdata, =91%e[N times]=92) ?
Thank you in advance!
|
2/9/2010 3:37:10 PM
|
0
|
"http://groups.google.com/group/comp.soft-sys.math.scilab/topics" <der...@googlemail.com>
|
Excel time format conversion
Hello All!
I'm still quite a n00b to scilab, and am looking for a way to convert
the "hh:mm:ss" excel format into a proper number, ie "hh.mmss". Heck,
even three numbers "hh" and "mm" and "ss" would do the trick! At the
moment all I am getting is rows and rows of NaN.... Is there a
command / does anybody know a trick?
Thanks in advance!
Chris
|
2/3/2010 1:27:50 PM
|
0
|
Chris Schmidt <easthope.schm...@googlemail.com>
|
sci lab PID program
which is the sci lab instruction equivalent to mat lab instruction
"cloop" which converts open loop transfer function to close loop TF.?
which is the equivalent matlab instruction for matlab instruction
'cloop' ?
|
2/3/2010 1:12:26 PM
|
0
|
vidu <vidwans.a...@gmail.com>
|
AutoTick and subplots
plot([1,2,4,5],[1,4,16,20],`ro-')
Produces y-ticks at 0:2:20 and x-ticks at 1:0.5:5
But the much smaller graph
subplot(2,2,1)
plot([1,2,4,5],[1,4,16,20],`ro-')
Has the same tickmarks but half the space, not as pleasing.
I know how to manually change the tickmarks via a = gca() to
change the xticks and yticks but it is hardly automatic.
is there a way to get auto_scale to cut the number of ticks
in half?
--
Steven Bellenot http://www.math.fsu.edu/~bellenot
Professor and Associate Chair phone: (850) 644-7405
Department of Mathematics
|
2/2/2010 10:54:52 PM
|
0
|
fakeu...@invalid.domain
|
GUI in SciLab
I am new to Scilab. I am working on a project on image compression. I
have decided to make it in scilab. Please tell me that how to
implement interactive gui in scilab for this project.
|
2/1/2010 7:21:46 PM
|
0
|
Ankur Gupta <r.ankurgu...@gmail.com>
|
scilab editor
hi,
on previous releases there was an editor "scipad" which had a lot of
functionnalities. on relaese 5.2.0, scilab editor is a basic editor.
scipad had functionalities for debug scripts and functions. to my
mind, it's essential to have debug functionalities to develop code.
do you know if futur scilab releases will have debug functionalities?
do you know if it's possible to add menus on basic editor to add debug
point on one ligne of script ?
|
2/1/2010 8:09:14 AM
|
0
|
bubu <bruno.don...@hotmail.fr>
|
parameter estimation for the ordinary differential equation
Can I get some advice about non-linear curve fitting of ordinary
differential equation which can be shown as below.
Example: dx/dt=3Dk1*f(x)/(1+k2*f(x))
I need to solve the =91k=92 values to fit the simulation curve to the
experimental data. In this case how can I get those k values by
scilab?
Simply speaking, I want to know how can I estimate a parameter of
Ordinary Differential Equation.
I expect your precious answer. Thank you.
|
1/29/2010 3:08:44 AM
|
0
|
june <bassd...@gmail.com>
|
Updating file
Hi,
i am a new Scilab user and i need a little help...
What I am trying to do, is: open a file with mopen(filename,"r+") and
then read and write different lines in this file with mputl and
mgetl.
The problem is: when trying to write a line, mputl always fails.
As I understand "r+" opens a file in update mode, so that i can do
both inputs and outputs.
This is probably a very simple problem, but I still need help.
Thanks,
Piet
|
1/28/2010 3:22:16 PM
|
0
|
Piet <piet_markm...@web.de>
|
Making math tricks in nanoseconds!!!
Making Mathematical Tricks in Secounds.
Now mathematical tricks can be made using any math concept known to
mankind!!!!
The Worlds most famous mathematical trick now became the biggest!!!
Hi Everyone,
I think that you will be interested if i say that i can make a
mathematical trick in seconds which would contain any mathematical
concept you want!
Do you want to know what's the world's most famous math trick:
well, it is simple and goes something like this:
Select a secret number, do th given calculations, and last you get a
constant answer no matter what number you took!
|
1/26/2010 2:35:29 PM
|
0
|
Rishabh <poddarrish...@gmail.com>
|
compile a scilab function
hi,
could someone explain me how to compile a scilab function to speed up
its execution time ?
is it possible? how?
thanks a lot
|
1/23/2010 10:19:59 PM
|
7
|
bubu <bruno.don...@hotmail.fr>
|
Linking to short data type parameter
I'm calling from a Scilab script an extern C function like func(short*
ShortArray), passing an array of integer values to it. But if for
example the input vector is (1,1,1,1), inside the function I get
(1,0,1,0). Any idea?
|
1/22/2010 4:09:40 PM
|
1
|
"Dr. Math" <sforacchioni2...@yahoo.it>
|
Modelicac Open Source?
hello list,
I am interested in Modelica compiler.I've read that in ScicosLab is used an open source Compiler with Name modelicac.
Now I am looking to the sources. Unfortunately, them I did not found on the website.
Can someone give me a hint where the sources to the compiler are provided.In ScicosLab only a binary source is attached.
Regards
Willi
|
1/22/2010 3:56:33 PM
|
1
|
Willi <u...@compgroups.net/>
|
Vectorize code
Hello,
I'm writting a code to approximate RGB values for visible wavelengths
(using linear approximation)
I wonder if I can vectorize this code or if I must use a "for" loop to
get R G B value
clear
function [R,G,B] = spectre(lambda)
// wavelength : lambda in nm
if lambda>=380 & lambda<=440 then
R=(440-lambda)/(440-380)
G=0
B=1
elseif lambda>=440 & lambda<=490 then
R=0
G=(lambda-440)/(490-440)
B=1
elseif lambda>=490 & lambda<=510 then
R=0
G=1
B=(510-lambda)/(510-490)
elseif lambda>=510 & lambda<=580 then
R=(la
|
1/21/2010 6:28:06 AM
|
3
|
"no...@nowhere.undef" <s.cel...@gmail.com>
|
how can I deal with the Chinese problem in Scilab 5.2
It seems that the Chinese character cannot be displayed properly in
Scilab 5.2, how can I deal with it? Is the same way as it is in Scilab
5.1 feasible?
|
1/20/2010 11:27:28 AM
|
0
|
workaholic <liua...@gmail.com>
|
Problems with intigration of Scilab in Java Swing application
I am facing few problems while integrating the Scilab 5.1.1 with Java
Swing application. These problems only occurs if we draw a graphics
in Scilab function .e.g. calling Scilab.Exec("plot()")from java swing
application
The problems I faced are
1) The swing application goes in dead lock state. To solve this
problem we call the plot function in different thread but this also
does not solve the problem. Calling the Scilab function on different
thread and keeping the swing thread waiting for the output cause the
dead lock again. In our application we want to display the data to
user
|
1/18/2010 6:50:34 AM
|
0
|
praveen <praveen.kamatnur...@gmail.com>
|
Scicos/modelia initilization problem on Windows 7
Hello,
I have installed Scicoslab 4.4 and Visual C++ Express edition on
Windows 7 in order to run modelica simulations (like the RLC circuit
of the scilab demo) and I get the following problem:
"
Initialisation problem
The modelica block returns the error:
scicosim: unknown block: RLC_circuit_sim
"
I guess this is a Windows 7 related problem because it works smoothly
on XP or Linux.
Any suggestion where the problem could come from / how to debug?
Thanks
Fabian
|
1/13/2010 5:02:58 PM
|
0
|
Fabian Dortu <fdo...@fastmail.net>
|
problem loading large matrix
Hi There,
I am loading a large matrix. To do so, I put the following line into a
file 'dummy.sce':
t = [1.0 2.0 3.0 4.0 5.0 ..... until 4000.0];
(the numbers in this matrix are the output from another program).
When I run the command:
--> exec 'dummy.sce'
I get the following error:
-->t = [0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0
14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 ........... etc.....
836.0 837.0 838.0 839.0 840.0 841.0 842.0 843.0 844.0 845.0 846.0
847.0 848.0 849.0 850.0 851.0 852.0 853.0 854.0 855.0 856.0 857.0
858.0 859.0 860.0 861.0 862.0 863.0
|
1/12/2010 7:24:19 PM
|
1
|
Jean-Marie Bouteiller <boute...@gmail.com>
|
Scilab internals
Hi,
I've got a question concerning the Scilab internals. I saved a block
diagram as Interf func (i.e. as ASCII-file) and I have some problems
to understand the code.
Why are some objects saved as scs_m_1 and some as scs_m_2? What's the
background of that?
I think all blocks of the block diagram are saved in scs_m_1.objs, is
that correct?
Here is a little example:
scs_m_1=scicos_diagram(..
version="scicos4.3",..
props=scicos_params(..
wpar=
[-60.392472,534.04133,69.597225,421.46172,810,481,37,0,736,481,25,25,1.4],..
Title=["PT1Sc
|
1/12/2010 3:57:42 PM
|
0
|
Michael <mba...@t-online.de>
|
Converting .mat files into Scilab
Hi all,
I'm working on a project and I need to convert .mat files into Scilab.
I am using the matfile2sci function, but I have a lot of .mat files to
convert. Is there any way to edit the matfile2sci function so that it
can convert whole directories like the mfile2sci function?
Thanks,
SJR
|
1/9/2010 10:12:01 PM
|
4
|
Steve <srussel...@regis-nyc.org>
|
Text in graphs
I am trying to write some text in my graphs and found the xstring
command. The coordinates for this command are in my "data"s coordinate
system so it is easy to write text related to data.
The problem arise when I want to draw text at a specific position on
the graph, For instance 1 cm from the left edge and one cm above the
bottom edge. Is there another string command to write text in the
figure?
/Anders Sneckenborg
|
1/8/2010 12:03:27 PM
|
2
|
Anders <simbal...@gmail.com>
|
discrete event simulation
Hi,
I'am studying mechanical engineering. At the moment i am working on a
project to compare the simulation of continous, discontinous and
discrete event models in Scicos with the simulation in Simulink
(Matlab).
Is there any possibility or any toolbox to solve discrete event models
like you can do it in Simulink (Stateflow or Sim-Event)?
Thank you in advance.
Best regards
Thomas
|
1/8/2010 12:01:42 PM
|
1
|
Thomas <thomas_witt...@hotmail.de>
|
CPU Load: leastsq
Hi all.
I am using leastsq to do some optimisation; however, it seems to run
very slow on my computer. The CPU load remains at about 12% while it
runs. It takes a fair while to complete, and if it is possible to use
more CPU I would certainly like that.
I searched the group and found the most recent discussion of dual core
processors was 2007 and that the libraries used at that time can only
see one core so the CPU load was already 50% of the total.
Does a 13% CPU load for an optimisation run sound correct? Is this a
known CPU/OS/Scilab thing, or is it more likely my error funct
|
1/6/2010 5:24:11 AM
|
1
|
shane <nanomagnodyn...@gmail.com>
|
Batchmode asks to continue the output
Hi,
when I'm trying to use Scilab in batch mode (-nw or -nogui or -nwni)
and feed it a file of commands it asks periodically
[Continue display? n (no) to stop, any other key to continue]
This is bad because it will take the first letter of the next command
in the file to answer that question, causing the rest of the file to
become corrupted.
How do I turn this off?
|
12/30/2009 12:06:24 PM
|
0
|
Christoph Raupach <craup...@gmail.com>
|
Menu + submenus in the console
Hi,
I need to create a menu with submenus on the console's menubar, like
for the Preferences/Colors item that proposes 2 sub-items Background |
Font.
addmenu() looks the only way for creating menus in the console, unless
there is a console handle that could be use with uimenu(). How is it
possible to retrieve the console's handle ?
Or what's the syntaxe with addmenu() to create items with sub-menus ?
Thanks for any hint.
Samuel
|
12/28/2009 2:04:38 AM
|
3
|
SG <sgoug...@free.fr>
|
Bad error message : Bug 3478
Hi Folks,
I'm running a small routine to check out the i/o capabilities of Scilab as
follows:
ns=200; for it = 1:10:ns; print('a.txt',it); end;
Ofcourse the routine is meant to print the results to a file 'a.txt' in the
working directory. While there is a file created, there is one entry where
there should be 11 and the following error message is given in Scilab
(3.1.1(0))
File a.txt already exists or directory write access denied
In the bug report below, there is a comment by Allen Cornet, but no apparent
fix (1)? Also there is another reference to this problem that
|
12/26/2009 1:16:50 AM
|
1
|
"David K" <...@picknowl.com.au>
|
Bad behaviour of Xcos in Scilab nightly build.
Hi all,
I've just downloaded the nightly build of Scilab, installed it on
Windows XP and tried to run an XCos session.
This error came out:
Scilab has found a critical error (EXCEPTION_ACCESS_VIOLATION)
with "scicosim" function.
Save your data and restart Scilab.
After this, Scilab turns unusable (no commands do anything) and must
be killed with Task Manager.
Best wishes
|
12/26/2009 12:52:05 AM
|
1
|
Maggoo <heliocborto...@gmail.com>
|
Precision of msscanf?
I am converting a string with numbers that have formats like
mystring = ['+03119.358368 +00059.509320'; '+03119.359514 +00059.360184'];
I'm using
mynumbers = msscanf(-1, '%f %f', mystring);
But the results that I'm getting are truncated, to what appears to be
single-precision floating point. Is this an inescapable deficit with
msscanf? If not, how do I coerce msscanf into doing this with full
precision? If it is, is there an alternate built-in function that will
do this, or do I need to come up with some work around?
Thanks.
--
www.wescottdesign.com
|
12/22/2009 6:09:48 PM
|
5
|
Tim Wescott <...@seemywebsite.com>
|
Code Completion
Hi Fols,
can anyone suggest a development environment that will perform code
completion of Scilab objects ? ie ObjectName.(list of member functions)
thanks and Merry Xmas
David
|
12/22/2009 6:57:08 AM
|
3
|
"David K" <...@picknowl.com.au>
|
Scilab 5.2.0 Canvas
When is the silly business with not being able to mix uicontrols and
graphics going to get fixed? There were no problems with the 4.x series now
I have two machines where scilab is next to useless, the 5.x series, because
it can't do graphic plots, the scripts cause scilab to die and shuts down
completely!
Both machines have the Intel graphics chip set, and no I'm not going to
screw around loading different graphics drivers, everything else works
meaning all of the other software I have. The older 4.x series works fine on
the same hardware. Scilab should work out of the box wi
|
12/22/2009 2:34:28 AM
|
2
|
"Leland C. Scott" <kc8...@arrl.net>
|
ScicosLab 4.4-beta has been released
ScicosLab is a free distribution of Scilab/Scicos, based on Scilab4,used
primarily for implementing toolboxes developed in the Metalau project at
INRIA and ENPC such as Scicos and Maxplus, and Scipad. ScicosLab is not
supported by the Scilab consortium, and it is based on GTK GUI under
Linux and Mac, and native toolkits under Windows.
ScicosLab is available in source and binary formats for most Linux, Mac
and Windows platforms (www.scicoslab.org, www.scicos.org). The 4.4-beta
version is made available for Windows, and will be available in the
coming days for Mac and a few Linu
|
12/21/2009 3:55:23 PM
|
0
|
Francois Delebecque <Francois.Delebec...@inria.fr>
|
scilab fails in show_graph()
Hi,
On scilab 5.1.1 linux Ubuntu 9.10
I do :
algo52arcs=3D[1 2 1 3 1 4 2 3 2 6 3 5 4 5 4 7 5 6 5 7 6 7] -->OK
algo52arcDeb=3Dzeros(length(algo52arcs)/2);algo52arcDeb=3Dzeros(length
(algo52arcs)/2);for k=3D1:length(algo52arcs), if modulo(k, 2)=3D=3D1 then
algo52arcDeb((int32(k) / (int32(2))+1))=3D algo52arcs(k) ,else,
algo52arcFin(int32(k)/int32(2))=3D algo52arcs(k),
end ,end -->OK
algo52val=3D[3 3 2 2 5 1 0 2 3 4 2] --
>OK
algo52max=3D[6 4 3 2 5 5 2 2 3 4 6 ] -->OK
g52=3Dmake_graph(
|
12/20/2009 8:33:25 AM
|
0
|
syn hedionn <synhedi...@gmail.com>
|
Only LCC and MSVC are the accepted C compilers?
Colleagues,
Scilab 5.1.1 doesn't find DJGPP in Windows XP, despite it's a
registered resource (PATH and all that).
Are LCC and MSVC the only ones accepted as C compilers?
Best regards.
|
12/20/2009 1:06:40 AM
|
0
|
Maggoo <heliocborto...@gmail.com>
|
xstring
I used to use xstring to write information to graph outside the axes.
Now with version 5.2 it is not possible to write outside the axes. The
text is being clipped sp only the part inside the axes is shown.
Is there another way to draw text on a graph without using xstring?
Best retads
Anders
|
12/18/2009 7:33:06 PM
|
2
|
Anders <simbal...@gmail.com>
|