User Portlet User Portlet

Discussions
I was following the [LibraryLink documentation][1]. There are two ways to send an error from inside the C library. one using `WolframLibraryData::Message` which takes `"tag"` as an input. The second way is to send the following expression over...
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...
I was working on a library for my simulations. The difficult part was the shape of its input and output requires sophisticated UI. So after few days of manipulation with `Manipulate` I switched back to C++/Qt based UI and Mathematica for computation....
Is there anyways to know what algorithms mathematica is using to solve optimization problems in Minimize[] or Maximize[] ? because if I use performance as retrieved by Timing[], on a paper I should write what methods has been used to solve the...
I have a function that takes two input matrices an creates some series of variables to be used with Minimize. The function should generate the lazy equations dynamically based on those variables. SPOP[p_, v_] := ( (* expects |cols(p)|...