Questions tagged [wolfram-language]

Wolfram Language is a knowledge based, multi-paradigm programming language. In a first approximation, the Wolfram Language = Mathematica + Wolfram|Alpha + Cloud + more. It's compatible with Mathematica, but it's a significant evolution, including knowledge, deployment and many new ideas.

This tag should be used on questions that pertain to the Wolfram Language created by Wolfram Research.

The Language's homepage can be found here: http://www.wolfram.com/language/

Programs can be written in the language via the wolfram programming cloud: https://programming.wolframcloud.com/app/

100 questions
1
vote
1 answer

Permutations in Wolfram Alpha

So, the program has to print all possible permutations of a set A with elements {x, y, z, w, u, t}, with length of 3, which accomplish this condition: 'u' must not appear after 't'. I know how to find all possible permutations like this: A = {x, y,…
1
vote
1 answer

Implementing Wolfram language in flex, bison, c++

After seeing projects like mathics and symja, I am trying to implement an open-source parser for the Wolfram language using flex and bison in C++ . Invoking bison -d and flex++ don't raise any issues, but when I use g++, I get the following error…
1
vote
0 answers

Connect to Elastic Search through a JDBC (for Wolfram Language)

Specifically, I'm wondering if you can connect the Wolfram language to Elastic Search. Indication is that you can connect Wolfram to any DB that supports JDBC:…
Narfanator
  • 5,595
  • 3
  • 39
  • 71
1
vote
1 answer

Can the Wolfram language be used to do web development?

Is it possible, and if it is, would it be viable to do web development with the wolfram language? Maybe not 'general web sites', but web applications, web services? Maybe something to do with big data, data mining, machine learning, heavy…
orlybg
  • 599
  • 1
  • 5
  • 15
0
votes
0 answers

How to do the equivalent of Wolfram Language's ListPlot in WolframAlpha?

The Wolfram Language defines the ListPlot function. However, it does not work in WolframAlpha except for some scenarios where it just gets interpreted as plot ..., but even then, it is interpreted as a single plot. What I want to do is plot multiple…
bmitc
  • 357
  • 1
  • 9
0
votes
0 answers

How can I use PointLegend and LineLegend on the same graph (for different variables) in Mathematica and how can I put the legend inside the plot?

I'm plotting a data set as points and using a best-fitting line. Hence, I wanted to depict the points as points and the line as a line for accessibility and aesthetic purposes. Also, I know about the "Placed" command, but I haven't been able to…
0
votes
0 answers

"DRadialGaussian" is not available as built in function in Mathematica. How can I install package of it in Mathematica

I got an online video code of iris images where someone has used DRadialGaussian, which is not working in my Mathematica software. I need to install some extra package to run it. How can I obtain the code of DRadialGaussian package? I tried but not…
0
votes
0 answers

"Invalid integration variable or limit(s)" in Wolfram Mathematica

I want to calculate surface area like this Integrate[Boole[x^2 + y^2 < 1], {x, -1, 1}, {y, -1, 1}] But Wolafram Mathematica said: invalid integration variable or limit(s) in {39/5, -1, 1} What's the problem? I looked at the official documentation…
GumBlor
  • 31
  • 2
0
votes
0 answers

Wolfram format for mathmatics equations

I am trying to solve a system of 4 equations in Wolfram. x4 - x1 + x2 - x1 - b - b x1 =0 , x1 -x2+x3-x2 - b- b x2=0 , x1 -x4+x3-x4 + b - b* x4=0, x4 -x3+x2-x3 - b -b* x3=0 , b > 0, solve for{x1,x2,x3,x4} but it keeps giving me error
Hani
  • 3
  • 2
0
votes
2 answers

How to formulate this simple mathematical riddle in Wolfram Language

I'm trying to formulate the below question into a computable wolfram language solution, but can't seem to get it right. Question: Place three piles of matches on a table, one with 11 matches, the second with 7, and the third with 6. You are to move…
Jason Roell
  • 6,679
  • 4
  • 21
  • 28
0
votes
2 answers

Wolfram Mathematica is returning an incorrect derivative for the function (16x-4^x)/2x

In Mathematica, I open a new notebook and define the function f(x) as: f[x_]=((16x-4^x)/2x) Then, I calculate the derivative with the command: f'[x] This returns the following: 1/2 (-4^x + 16 x) + 1/2 x (16 - 4^x Log[4]) I believe this answer to be…
0
votes
0 answers

How to write not equal to in Wolfram alpha

How to write not equal to in Wolfram alpha I want to write the following equations with not equal to condition in Wolfram Alpha y*(n − k) − x*(n − k − b) ==0,y*(b − k) + k*x == 0, b>0, k>0,n>0, n != k solve {x,y} but n != k is not working. Why?
0
votes
0 answers

Working with implicit functions in Mathematica returned from other functions

I have a equation inv = (x + f) (y + g) == z; But for some reason I cannot CountourPlot it, even though copy-pasting output, for example {(2 + x) (2 + y)} == {11} into CountourPlot works. I've tried both Hold and Defer to no luck. What's happening…
Moonwalker
  • 2,180
  • 1
  • 29
  • 48
0
votes
0 answers

Encrypting/decrypting text message using wolfram Mathematica language ECC

How can I use Wolfram Mathematica code's for ECC support to encrypt or decrypt an text message? I am unable to generate ECC private/public keys using wolfram Mathematica language, and I don't know how to encrypt text message using those keys.
0
votes
1 answer

Automatically convert pixels to millimeters in Mathematica

I can get the drop contour through a GetDropProfile command. However, I can't find the conversion factor from pixels to millimeters. As the contour of the drop is obtained point by point starting from left to right, then the first ordered pair in…