Questions tagged [wxmaxima]

WXMAXIMA QUESTIONS MUST BE PROGRAMMING RELATED. A GUI front-end Maxima built with wxWidgets

A GUI front-end Maxima built with wxWidgets. https://github.com/wxMaxima-developers/wxmaxima.

154 questions
0
votes
0 answers

Why is maxima showing only [ ] as output answer?

I'm new at using Maxima, so when I wanted to solve these simultaneous equations: $$y_1=-\left(\frac{2ax+c+ey} {2by+d+ex}\right)x_1+\left[y+\left(\frac{2ax+c+ey} {2by+d+ex}\right)x\right]$$ and $$ax^2+by^2+cx+dy+exy+f=0$$ where the variables are…
Soham Sarkar
  • 101
  • 1
0
votes
1 answer

wxmaxima transforming functions

I'm having problems with the 4th part of the exercise, I cannot get it to work in maxima: firstly transform s_y(t) to t=... that should be t=sqrt(2*s_y/a_y) then insert that into s_x(t), to get a new s_x2(s_y) function, where you don't insert a time…
Dux
  • 101
  • 4
0
votes
0 answers

plotting a function defined by parametric integral

I am going to plot2d the function f(x) which is defined by a parametric integral load("c:/work3/nint.mac"); g(x,y):=x*y; f(x):=nint(g(x,t),t,1,100); wxplot2d(f(x),['x,0,10]); plot2d: expression evaluates to non-numeric value everywhere in …
Gabor
  • 1
  • 1
0
votes
2 answers

Is there a way to solve Ternary first-order equation with Maxima?

I want to know the Solving Syntax for Ternary first-order equation on maxima. For example; F_A + F_C + F_E - 15 = 0; -F_A *0.4 + 15*0.2 m + F_E*0.4 = 0; F_C = 0.3*F_A + 0.3*F_E; wanna know How to get the solution F_A, F_C, F _E?
unmask
  • 1
  • 1
0
votes
1 answer

How does one install wxmaxima?

I entered sudo port install maxima and got Error: Failed to build libgcc-devel: command execution failed Error: See…
0
votes
2 answers

How to simplify matrix in terms of an equation

I have an matrix in Maxima, let´s say (for simplification of the problem): A: matrix([2*(a^2+b^2+c^2)]) But I know that: a^2+b^2+c^2 = 1 How do I simplify that matrix in Maxima in terms of that equation, in order to obtain A = [2]?
Luis Costa
  • 71
  • 1
  • 3
0
votes
2 answers

wxMaxima doesn't give a numerical answer - even when using float()

I tried setting up a simple function in wxMaxima - but find that the answer is symbolic. I've tried using float() in conjunction with the function that I've created, but float() doesn't fully convert the symbolic answer to a single number. Is…
Sketch
  • 81
  • 1
  • 6
0
votes
2 answers

No more room for LISP objects error wxMaxima

I am trying to solve a non-linear equation system with maxima. I use wxmaxima (17.05.0). The non-linear system is rather long and I am deeply sorry for posting the hole problem, but otherwise I do not think my problem will be clear. I would like to…
Zorg
  • 79
  • 1
  • 11
0
votes
1 answer

Generate a Bode-form transfer function using ratsimp

I have to simplify a transfer function using sympy. I am used to maxima and I am looking for advice to get similar performances in a python environment. Using the following Maxima…
GioP
  • 55
  • 1
  • 10
0
votes
0 answers

Is there a way to solve trigonometric equations in WXMAXIMA ,like Lagrange equation of motion?

Is there a way to solve trigonometric equations in WXMAXIMA ,like Lagrange equation of motion?
0
votes
0 answers

diff function doesn't work with Greek letters

Consider the list P : [r * sin(%phi) * sin(%gamma), r * cos(%phi), r * sin(%phi) * cos(%gamma)]; when using the diff() function: diff(P, %phi, 1); and I get the error: diff: second argument must be a variable; found -- an error. To debug this…
Foad S. Farimani
  • 12,396
  • 15
  • 78
  • 193
0
votes
1 answer

Inserting a list into a loop equation on Maxima

I have written three simultaneous equations in a loop which goes for 260 years one step each year and now I need to add another value into one of the equations in the loop. I have these values inported as a list and they change every year. I am…
Dani
  • 9
  • 2
0
votes
1 answer

Understanding the output of with_stdout

Acordding to the documentation of maxima, with_stdout is a function that evaluates some expressions and writes the output according to this expressions to a file f. I tried to use this function with a simple example: with_stdout ("data.txt", for…
NotAkuno
  • 9
  • 3
0
votes
1 answer

wxmaxima: plotting a discrete data - can I call the data from an exterior file?

I have a data ([x1,y1],....,[xn,yn]) where $n$ is large, around 700. I want to plot these data in wxmaxima. The question is: can I store these data in an exterior .txt or .wxmx file and call it from within the code. How achieve this? Thanks a lot
Medo
  • 109
-1
votes
1 answer

How to convert Mathcad formula to WxMaxima

I'd like to convert a Mathcad formula to WxMaxima which calculates Fourier transform of two signals. The problem is I haven't used Mathcad software until now. My primary operating system is Linux and as far as I know it is quite difficult to…
user762630
1 2 3
10
11