La recherche a retourné 164 résultats

par XcasEngGuy
mar. juil. 08, 2025 11:10 pm
Forum : Xcas - English
Sujet : Landscape option
Réponses : 7
Vues : 330

Re: Landscape option

This will do landscape: if [ $# -eq 0 ] then echo 'Convert tex file to PDF - no mods' echo 'Usage: latex_pdf <tex file>' exit fi fn=$(cygpath -u $1 | sed -e 's/.[Tt][Ee][Xx]$//') # -e 's?.*/??g') # keep dir sed -i -e 's/\\documentclass{article}/\\documentclass[landscape]{article}\n\\usepackage{fullp...
par XcasEngGuy
dim. juil. 06, 2025 6:14 pm
Forum : Xcas - English
Sujet : Landscape option
Réponses : 7
Vues : 330

Re: Landscape option

For what it's worth, Cygwin is "linux" as an emulator. I am basically using bash scripts. Also sed, perl, and gawk on the more complicated ones.

In the script I provided, cygpath converts a Windows path to linux format.
par XcasEngGuy
sam. juil. 05, 2025 8:14 pm
Forum : Xcas - English
Sujet : Landscape option
Réponses : 7
Vues : 330

Re: Landscape option

In the file menu I use "Latex/Latex Preview". A ".tex" file is produced. I use Cygwin software to create the ps or pdf file from that. If you feel ambitious I can sent you the scripts I use. A simple example: if [ $# -eq 0 ] then echo 'Convert tex file to PDF - no mods' echo 'Usage: latex_pdf <tex f...
par XcasEngGuy
ven. juil. 04, 2025 5:45 pm
Forum : Xcas - English
Sujet : Landscape option
Réponses : 7
Vues : 330

Re: Landscape option

in the latex (.tex) file try changing:

\documentclass{article}

to

\documentclass[landscape]{article}
par XcasEngGuy
mer. mai 28, 2025 7:00 pm
Forum : Xcas - English
Sujet : Distribute power into quantity
Réponses : 5
Vues : 1175

Re: Distribute power into quantity

Thank you. That would have taken me a long time to figure out!

Matt
par XcasEngGuy
lun. mai 26, 2025 7:44 pm
Forum : Xcas - English
Sujet : Distribute power into quantity
Réponses : 5
Vues : 1175

Distribute power into quantity

Is there a command that will convert:

(V1/V2)^k

to

V1^k/V2^k

?
par XcasEngGuy
ven. mai 16, 2025 8:01 pm
Forum : Annonces
Sujet : 2.0.0
Réponses : 6
Vues : 3346

Re: 2.0.0

by clicking on an HTML file android should ask what to open it with. If it already has an association you have to clear the default association to enable the chooser.

For Samsung:
https://www.samsung.com/my/support/mobi ... on-android
par XcasEngGuy
mer. déc. 04, 2024 6:49 pm
Forum : Bugs
Sujet : integrating the diff command
Réponses : 1
Vues : 6206

integrating the diff command

I have a small problem. Integrating the diff command works well up to the 3rd derivative <meaning diff(y(x),x,3)>
window.jpg
window.jpg (73.72 Kio) Consulté 6206 fois
I actually use this. Fixable?

Matt
par XcasEngGuy
mar. nov. 19, 2024 5:27 pm
Forum : Xcas - English
Sujet : substituting constant into slope equation
Réponses : 3
Vues : 6855

Re: substituting constant into slope equation

I am still curious about what's shown in eq18 through eq22 in my example. In eq19 I "recreate" the first equation in eq18 by setting the left hand side equal to the right hand side. After that recreation the normal command functions as I like (eq20 and eq22). However, normal(eq18) does not even thou...
par XcasEngGuy
lun. nov. 18, 2024 6:55 pm
Forum : Xcas - English
Sujet : simplify(expr, 'pol')
Réponses : 5
Vues : 9782

Re: simplify(expr, 'pol')

That would be an easy command to create with xcas programming
par XcasEngGuy
lun. nov. 18, 2024 6:51 pm
Forum : Bugs
Sujet : Copy example to command line
Réponses : 4
Vues : 7363

Re: Copy example to command line

When I left-click on an example I get the whole example. Can you clarify?
par XcasEngGuy
sam. nov. 16, 2024 6:56 pm
Forum : Xcas - English
Sujet : substituting constant into slope equation
Réponses : 3
Vues : 6855

Re: substituting constant into slope equation

Thanks, I'll try that.
par XcasEngGuy
ven. nov. 15, 2024 8:20 pm
Forum : Xcas - English
Sujet : substituting constant into slope equation
Réponses : 3
Vues : 6855

substituting constant into slope equation

I noticed something interesting. I work a lot with integrating differential equations for bending of beams. After finding the equations for the slope and deflection of a beam, I need to calculate those values at a point on the beam. I have attached the .xws file and the pdf I can create from the Lat...
par XcasEngGuy
sam. août 03, 2024 2:36 am
Forum : Xcas - English
Sujet : subst cmd
Réponses : 9
Vues : 15180

Re: subst cmd

I know it was recently added. I found out about it here after I asked a question

viewtopic.php?f=19&t=2867

Matt
par XcasEngGuy
mer. juil. 31, 2024 5:37 pm
Forum : Xcas - English
Sujet : subst cmd
Réponses : 9
Vues : 15180

Re: subst cmd

By the way, I usually collect my initial parameters in an array which means I can substitute them all at once into an equation by simply referencing the array name in the 2nd argument to subst. I also do this with solved variables as I progress in a solution. For example: eq1:=tran(x1=5.368,y1=2.294...