Christopher Wilsontechshopper.hashnode.dev·Aug 12, 2024Advanced techniques in computational fluid dynamics: modeling complex fluid interactionsThe study of fluid dynamics has long been a cornerstone of understanding how liquids and gases behave in various environments, from the natural world to engineered systems. As our need to simulate these interactions has grown, so too has the importan...Discusscomputational fluid dynamics (CFD)
Naveen Kumarnaveenkumar-nk.hashnode.dev·Jun 9, 2023Mastering the Mechanics: Manual Calculations of Forward and Backward Propagation in Neural NetworksINTRODUCTION Unlocking the intricacies of neural networks, we delve into the manual calculations of forward and backward propagation. By dissecting the derived equations, we gain insight into how information flows and parameters are optimized. Join u...Discuss·43 readsneural networks
Habibullah Baharihabibullah.hashnode.dev·May 28, 2023Newton Raphson MethodOverview In numerical analysis, finding the roots of a function is a common and essential task. The Newton-Raphson method is a widely used numerical technique for finding the root of a real-valued function. It is an iterative method that refines an i...Discuss·49 readsnewton-raphson
Mandeep Singhmandeepsingh.hashnode.dev·Dec 22, 2022Create custom money format function in php with allow two digit onlyHere is an example of a function in PHP that you can use to format a monetary value with two decimal places: function format_money($value) { // Use number_format() to add commas as thousands separators and round to two decimal places $formatted =...Discuss·70 readsPHP
Siddharthsiddharthqs.com·Nov 15, 2022Monte Carlo Simulation using Rust Part-1In a nutshell, the concept of Monte Carlo simulation is pretty straightforward; it involves generating random numbers and averaging of the outcome. We can use this technique for evaluating probability problems to complex integral equations. The two p...Discuss·6 likes·1.1K readsmonte carlo