User Portlet User Portlet

Martijn Froeling
Discussions
&[Wolfram Notebook][1] [1]: https://www.wolframcloud.com/obj/e21ebcca-d029-42e0-b2ef-b7e5440f39cd
On Windows, it's CTRL+Shift+drag rather than CTRL+Drag for zoom. So I guess on Mac it will be CMD+Shift+drag
After the installation of 13.1 my standard tests of my paclet revealed that all function using `ListControurPlot3D` changed. I was always aware that in `ListContourPlot3D` the data is somehow transposed if you provide it as an array as can be...
You only want to show the contour for the solution f == 0 which can be done with ContourPlot. For the Plot3D all you have to do is set the proper plot range (and remove the boundary and clipping styles). Or you can use the parametric equation and use...
It has indeed been fixed in 13.1. Thanks.
Hi, use ColorFunctionScaling->False as an option for Plot3D
As far as i know, this is how it works: - first come column specs which can be a list of a spec per column, then come rows, then come specific rules for elements - Column styles go before row styles, so a row style will not override a column...
Will be very difficult to correctly export this figure correctly, too many different substructures that can all have their issues. Make one Grid is much easier array = Prepend[Transpose[Prepend[Correlation[Most /@ g[[1]]], h]], ...
When defining function i make use of `SyntaxInfromation` a lot for front-end highlighting of inputs. I know I can use `ArgumentsOptions` and `CheckArguments` to do internal validation of the input. However, I do also like for the front-end to...
Your code initializes with k and fluxdiff being numbers but after one iteration k and fluxdiff are lists. Your while condition specifies fluxdiff >0.0001. But {number} > 0.001 will stop the iterations. For the second iteration, your code crashes...