Software Engineering Solving Linear Programming problems in Python using cvxpy library Linear programming requires that all the mathematical functions in the model be linear functions. We have solved linear programming problems in Python using cvxpy library.
Software Engineering How to formulate a linear programming problem? In this article, we will explore into sample problems and formulate it as a linear programming problem. We have considered three problems Product Mix Problem, Transportation Problem and Flow Capacity Problem.
Software Engineering Reverse a large file using IO Syscalls (using chunks) In this article, we have used different system calls (syscalls) in order to reverse a large file (>1GB) using a chunk size rather than character by character. We have demonstrated this with a C code.
Software Engineering Introduction to I/O System call, file descriptor and modes in C In this article, we shall learn the basics of I/O syscalls, file descriptors and modes in C. System calls include open. close. creat and more.
Machine Learning (ML) Value Iteration Algorithm (with a 1D example) In this article, we have explored Value Iteration Algorithm in depth with a 1D example. This algorithm finds the optimal value function and in turn, finds the optimal policy.