User Portlet User Portlet

Martijn Froeling
Discussions
Times is evaluated first before Distribute so you are evaluating Distribute[List[a, b, c] List[a, b, c], List] which gives {{a^2, b^2, c^2}} To get what you want you need to keep Times unevaluated. ...
LiftingWaveletTransform i think but that does not support MeyerWavelet. With DiscreteWaveletTransform only the HaarWavelet gives the 2^r dimensions. In[280]:= test = RandomReal[{0, -10}, 128]; dwd = DiscreteWaveletTransform[test,...
When gridlines are defined that are outside the PlotRange the plot area is extended. Not sure when this started to happen (currently under 13.0.1), but it was not like this before. ![enter image description here][1] [1]:...
If you really want to be lazy, Rasterize can convert any expression in the forntend to an Image So `AnimationVideo[Rasterize[whaterver]]` will always work. AnimationVideo[ Rasterize@ Region[RegionIntersection[Sphere[{0, 0, 0},...
Use Chop[] This sets all values
When you definve `v[t_]:=Integrate [f[t],t]` and you try to plot it you are basically solving for each t Plot[{ Integrate[f[0],0] Integrate[f[1],1] Integrate[f[2],2] ... }] That won't work, so...
Hi, i wasnt sure what the current latest release contained. I just uploaded a [new release 1.3][1] which contains a *.paclet file. download this file and use `PacletInstall["fileDir\\UNET-1.3.0.paclet"]` which will install the paclet. You can then...
I think this is because you fixed the axes origin to {0,3} and for values of m True, FrameTicks -> Automatic` Last solution is to make the plot, find the PlotRange and then use that to reposition the axes at the bottom. plot = Plot[...]; ...
ElementwiseLayer applies the function to each element of the inputlist. so it cannot calculate the mean. You have to use FunctionLayer In[39]:= soft = FunctionLayer[Exp[#]/Total[Exp[#]] &] list = N@{1, 2, 3, 4, 5}; ...
Thanks that's very helpful, will give it a try