User Portlet
Featured Contributor
Discussions |
---|
I would be interested in seeing what is new and what is coming in the compilation framework. For example, it would be very useful to have simple-to-somewhat-complicated working examples of FunctionCompile, KernelFunction, the relatively new Data... |
Yet another way of using regions to constrain the vector arguments to NMinimize by using Regions &[Wolfram Notebook][1] [1]: https://www.wolframcloud.com/obj/86394446-dd0d-48ef-acc2-66a0ada6a079 |
For importing pdf documents, Version 13 introduced a larger variety of importable elements such as embedded images, etc. These can be very useful. I am wondering if anybody has worked out how to do the following: *Extract equations from a pdf of... |
I am not sure exactly what you are asking, but perhaps this might give you an idea for a direction. Here is the finite list generated by repeated multiplications by I: FixedPoint[Union[Join[#, I #]] &, {1}, 1000] So the order is: ... |
Hello Sander, Yes, I think it shouldn't be too hard too. I've thought about doing just that. I imagine that I'll just keep thinking about it. |
I created a new stack on AWS. It looks like the template is inserting "us-east" no matter what I do. Ah, there is a pull down menu on the AWS dashboard that asks you to specify your region: ![pull down tab at right][1] However, trying to... |
Perhaps something along these lines will give you a direction to follow: {tMin, tMax} = MinMax[ T[[All, 3]]] T[[All, 3]] = (T[[All, 3]] - tMin) (tMax - tMin) ListPlot3D[T, ColorFunction -> "TemperatureMap"] ... |
DatePlus is expecting a number or a list as its second argument. The function DatePlus[{2021, 1, 10}, x] is coming back unevaluated and a warning is being printed. When you replace the x, then it is being evaluated correctly. Compare:... |
This will give you the Form representation of the entity: Entity["PhysicalConstant", "ElectricConstant"] This will give you the Symbol associated with it: Entity["PhysicalConstant", "ElectricConstant"]["Symbol"] You can do this: ... |
Your data is a bit noisy which is normal for experimental data: yourData = Import["~/tmp/ASmappa-niccolini90-0.dat", "TSV"]; you will want to use your path to your data. dataForInterpolate = yourData /. {x_, y_, z_} :> {{x, y}, z}; ... |