User Portlet User Portlet

Discussions
Thanks for the answer. Ir is very helpful.
The problem occurs when the values are small, in that case, `Export` as text causes the numbers to be read as `String`. d2 // Map[Head] // DeleteDuplicates (* {Real, String} *) d2 // Select[Head[#] === String &] (*...
SeedRandom[123]; d1 = RandomVariate[NormalDistribution[], 100]; SeedRandom[123]; d2 = RandomVariate[NormalDistribution[], 100]; d1 == d2 (* True *) Replace `NormalDistribution` and `100` based on what you need. If you need...
Best way to sample times of different interpolations. Hello everyone. I have 50 vectors of position vs time. The measurement moments are different for each one of the 50. I have interpolated them as ...
Hello everyone. I have a set of weather data, wind in the East-West direction downloaded from the ECMWF. It is avaiable freely [here][1], albeit it needs some processing. I want to use the [Shannon interpolation][2] to obtain an analytic...
Hello everyone. I have performed the [Karhunen Loève decomposition][1] of some data using the function [KarhunenLoeveDecomposition][2]. The code I have used is as follows: R1 = Flatten[Import["Realization1.txt", "Table"]] {bT, mT} =...
Thank you. This works fine!
Hello. I have some questions on how to implement propperly the KL expansion in mathematica using [KarhunenLoeveDecomposition][1]. I have constructed the matrix realizationMat. it contains 101 measurements of 90 Gaussian stochastic processes. I...
Welcome to Wolfram Community! Please make sure you know the rules: https://wolfr.am/READ-1ST Please do NOT post large code and ask to debug it. Minimize your questions to concise code examples pinpointing your issue. Also this forum is...
Welcome to Wolfram Community! Please make sure you know the rules: https://wolfr.am/READ-1ST The rules explain how to format your code properly. Images don't help other members to copy your code. Please **EDIT** your post and make sure code blocks...