La recherche a retourné 562 résultats

par compsystems
mer. avr. 05, 2023 3:28 am
Forum : Xcas - English
Sujet : GIAC working on VSC
Réponses : 0
Vues : 1988

GIAC working on VSC

Hello
I'm following a numPI tutorial that runs on Visual Studio code
I also want to see GIAC working on VSC one day.

https://www.youtube.com/watch?v=fS7zwlxmOyU
par compsystems
dim. janv. 22, 2023 2:31 pm
Forum : Xcas - English
Sujet : Export the SHELL(I/O) of a work session in XCAS.
Réponses : 1
Vues : 1121

Export the SHELL(I/O) of a work session in XCAS.

Hello Some ideas for the fixed installation of the CAS version on PC a: I note that in recent versions XCAS can import work sessions from certain calculators, it should also import an XCAS shell. The XCAS-pc interface is a SHELL with numbered inputs and outputs. I think it would be very important fo...
par compsystems
dim. mars 20, 2022 2:02 pm
Forum : Xcas - English
Sujet : application to graph mathematical relations (set)
Réponses : 1
Vues : 2847

application to graph mathematical relations (set)

Hello. in the following blog there is information on how to graph relations maths. Please inform me if there is an app like lucidchart that makes sagittal diagrams, I mean, one between the sets and the relations, later, that graphs the diagram. or how can it be done with Xcas https://3.bp.blogspot.c...
par compsystems
jeu. oct. 07, 2021 8:59 pm
Forum : Xcas - English
Sujet : basic analysis of expression
Réponses : 5
Vues : 3244

Re: basic analysis of expression

factor( ((x+2)^2) = 4 ) [enter] Run ifactor(4) for integer factorization. =(

factor( ((x+2)^2) - 4 ) [enter] x*(x+4)
par compsystems
dim. oct. 03, 2021 4:57 am
Forum : Xcas - English
Sujet : basic analysis of expression
Réponses : 5
Vues : 3244

Re: basic analysis of expression

Separating expressions and then joining them is easy through a program, but other CASs do it automatically.

I think many would like this feature by default.
par compsystems
ven. sept. 24, 2021 3:57 pm
Forum : Xcas - English
Sujet : basic analysis of expression
Réponses : 5
Vues : 3244

Re: basic analysis of expression

Hi

In the expression ((x+2)^2)=4, it can be verified that if the right member is a number, perform the operation [factor, plot, ...] ("pass the member with the opposite sign to the left side"), as other CASs do.

factor( ((x+2)^2)=4 ) → x*(x+4)
plot( ((x+2)^2)=4 )
par compsystems
mer. sept. 22, 2021 4:57 pm
Forum : Xcas - English
Sujet : basic analysis of expression
Réponses : 5
Vues : 3244

basic analysis of expression

Hello Bernard Xcas could have a basic analysis of expression in the TOOLBOX menu, similar to what Wolfram does. Where an equation is entered for example ((x+2)^2)=4 and it shows for example its factorization (with commentary line), expansion, solutions and graph, just by entering the expression in t...
par compsystems
jeu. juin 17, 2021 3:31 pm
Forum : Xcas - English
Sujet : csolve(x^2=-1,'=') crashes and closes (installation version)
Réponses : 6
Vues : 4566

Re: csolve(x^2=-1,'=') crashes and closes (installation version)

Hi,
add title if it's a version cygwin or mingw

Xcas 1.7.0-13 (mingw Win32)
Xcas 1.7.0-13 (cygwin Win32)

Thanks
par compsystems
mar. mai 25, 2021 2:41 am
Forum : Xcas - English
Sujet : Scripts CAS
Réponses : 6
Vues : 3440

Re: Scripts CAS

64 bits cygwin version, ok =]
par compsystems
mer. mai 12, 2021 3:20 am
Forum : Xcas - English
Sujet : args[ 0 ] > size( args )
Réponses : 0
Vues : 7516

args[ 0 ] > size( args )

Hello, a new option for args can be args[0] equivalent to determining the number of arguments size( args ) //#cas f( a, b, c ):= begin local y; y := args; print( size( args ) ); // args: 4 // print( args[ 0 ] ); // 4 print( args[ 1 ] ); // function name: f print( args[ 2 ] ); // firts arg: 9 print( ...
par compsystems
lun. mai 10, 2021 3:25 am
Forum : Xcas - English
Sujet : when cmd
Réponses : 7
Vues : 3248

Re: when cmd

Updating documentation takes time, but if these little ones get lost, it will be more difficult It seems to me that it is important to update this command at least in the French document. WHEN CMD 4 arguments 1: test to solve 2: action for true 3: action for false 4: optional if you cannot solve the...
par compsystems
sam. mai 08, 2021 3:17 pm
Forum : Xcas - English
Sujet : when cmd
Réponses : 7
Vues : 3248

Re: when cmd

when already accepts a 4th argument.
> but I think, it is not documented yet.

https://www-fourier.ujf-grenoble.fr/~pa ... _default52
par compsystems
ven. mai 07, 2021 4:24 pm
Forum : Xcas - English
Sujet : when cmd
Réponses : 7
Vues : 3248

Re: when cmd

Hello, in the case of the first post, this is the template that Xcas puts in the installation version for PC Prg Menu New prg about When cmd, I think it is very important to define a fourth parameter, that is, if it cannot evaluate to a logical value (firts arg), execute the fourth argument, this is...
par compsystems
ven. mai 07, 2021 2:31 am
Forum : Xcas - English
Sujet : when cmd
Réponses : 7
Vues : 3248

Re: when cmd

this way it works fine.

Code : Tout sélectionner

function f(testvar)
  return when( testvar, true, false );
end;
purge(x); f(x); [Enter] returns ((x)? true : false)

and why doesn't it return an error message ""Unable to check test Error: Bad Argument Value"