admin

rss feed

“Pick” Function in Mathematica 14.3 

Written by on October 5, 2025 in Mathematica, Programming with 0 Comments
“Pick” Function in Mathematica 14.3 

Pick is a widely used function in Mathematica. A minor enhancement was made to this function in the recent release; it can now work directly with BitVector datastructure. In this article, let us go over these two with some examples. Let us start with Pick first. It allows us to select from a list of elements […]

Continue Reading

“Cyclic” Function in Mathematica 14.3

Written by on September 12, 2025 in Mathematica, Programming with 0 Comments
“Cyclic” Function in Mathematica 14.3

“Cyclic” is a new function introduced in the recent Wolfram Mathematica 14.3 release. It represents a repeating sequence, something that we encounter often. For example, how do we represent the sequence {1,2,3,4,1,2,3,4,1,2,3,4…}? “Cyclic” captures this idea. In other words “Cyclic[{1,2,3,4}]” denotes the same repeating sequence as above. Other examples: weekdays = Cyclic[{“Mon”, “Tue”, “Wed”, “Thu”, […]

Continue Reading

Stock Analysis with Wolfram Mathematica – Part 2

Written by on August 19, 2025 in Mathematica, Programming with 0 Comments
Stock Analysis with Wolfram Mathematica – Part 2

In the previous article, I had explained how to get started using Wolfram Mathematica’s stock analysis features. The focus was on working with the exchanges supported by Mathematica, for example BSE India. What if we have stock data from a different source and want to analyze it in Mathematica? In my case, I use TradingView platform […]

Continue Reading

Stock Analysis Using Wolfram Mathematica

Written by on August 4, 2025 in Mathematica, Programming with 0 Comments
Stock Analysis Using Wolfram Mathematica

I have my own toolkit for analyzing stocks, but occasionally I use Mathematica as well. Given Mathematica’s extensive support for numerical computation including Machine Learning, it can be a valuable resource for deep analysis of the stock market. In today’s article, let me give an overview of some of the features that are helpful for […]

Continue Reading

Using TradingView Pine Script Screener

Written by on July 15, 2025 in TradingView with 0 Comments
Using TradingView Pine Script Screener

TradingView is a hugely popular stock charting platform. It comes bundled with hundreds of technical indicators and many are contributed by the community. I use it regularly for my stock analysis. In addition to charting, TradingView also has a Screener that allows us to filter stocks based on our custom criteria.  In the above example, […]

Continue Reading

Playing Word Games with LLM

Written by on June 28, 2025 in Word Games with 0 Comments
Playing Word Games with LLM

I don’t think my vocabulary is bad, but I love learning new English words. Especially weird ones! One book that is always on my desk is “More Weird and Wonderful Words” by McKeon. This is my goto book when I feel bored. More recently, I have switched to interacting with Claude and ChatGPT for learning […]

Continue Reading

Synergy Genie: Disease Info

Written by on May 27, 2025 in Homeopathy with 0 Comments
Synergy Genie: Disease Info

The recently released Synergy Genie module has several interesting features, all aimed at helping practising homeopaths. In my last article, I had explored a couple of features and had also shared some comments and suggestions. In today’s article, I wish to briefly go over the “Disease Info” feature. This features allows us to interact with […]

Continue Reading

Software Review: Synergy Viva – Genie Module

Written by on May 11, 2025 in Homeopathy with 0 Comments
Software Review: Synergy Viva – Genie Module

Synergy Homeopathic has released an upgraded version of their earlier “Synergy SHS” software in the name of “Synergy Viva”. The main improvement in this release is the ability to add-on optional modules.  I upgraded to the new release about a week ago and opted for the “Genie” add-on. What is special about “Genie”? According to […]

Continue Reading

Beyond Ownership: Understanding the Role of std::weak_ptr in Modern C++

Written by on May 4, 2025 in C++, Programming with 0 Comments
Beyond Ownership: Understanding the Role of std::weak_ptr in Modern C++

Smart Pointers in C++ are elegant abstractions for managing dynamic memory safely, avoiding dangling pointers and preventing leaks. While std::unique_ptr and std::shared_ptr are well understood and widely used, std::weak_ptr often demands a deeper dive to use correctly. In this article, I will attempt to explain what it is and where it is useful. Some basics […]

Continue Reading

Interfaces Without Inheritance: Comparing C++ and Common Lisp

Written by on April 24, 2025 in C++, LISP with 0 Comments
Interfaces Without Inheritance: Comparing C++ and Common Lisp

Clean interface design is a crucial aspect of software engineering since it enables code flexibility, reuse, and maintainability. Developers who prefer an object-oriented approach typically rely on inheritance to define the interface and thus establish type relationships. While this can lead to a good design if approached carefully, detractors of OOP point out that this […]

Continue Reading

Top