User Portlet User Portlet

Discussions
Examples for: **Functional(Delay ) Integro-Differential Equations Involving Caputo Fractional Derivative with initial conditions or boundary conditions .** NDSolve[{CaputoD[y[x], {x, 1/2}] - 3 y[x - 1] + Integrate[y[2 t],...
I have recently added `LibraryLink` Support on [`mathematica++`][1]. It is still in develop branch. It'll take a few days before releasing it to the master branch. It already have features to stream `WSPut`/`MLPut` calls streamed through the mlink...
For non-failure messages, such as warnings, I think the only realistic option is passing the desired message name to the function. Eventually, you will find that you often do not want to use the name of the LibraryFunction in the message anyway,...
When developing with LibraryLink, is there any way to get the function name from inside the library ? I don't think there is a way to find out the name of the function that have been used to access the C function like the `FunctionX` shown in the...
Many people don't know anything about mathematica just because they have never seen it. There should be a free may be stripped down version of mathematica for all Linux users, not only for Raspberry Pi. In universities many departments don't buy...
This is a 2 years old post. But I think It wouldn't harm linking another post here. I have recently posted about a C++ library mathematica++ in the forum that I have been working on for long days. [mathematica++][1] is a C++ library that uses...
- OSX> High Sierra 10.13.6, Safari >Version 11.1.2 (13605.3.8) - MacBookPro i7 - Mathematica v11.3 and CDF Player - CDF Player is non functional. - It seems that I purchased another Mathematica upgrade and installed a bunch of nonfunctional...
When you use Minimize and Maximize, you need to make sure all the numbers in the problem are integers or rationals. Otherwise, NMinimize or NMaximize will be used.
Thanks solved. Learning how `Do` loop works was necessary. Also I should use AppendTo instead of Append and the problem that I was actually facing is by default all arguments to a function are immutable. So I had to use HoldFirst to get this to work