Divyansh Sareenfordivyanshsareen.hashnode.net路Sep 11, 2022Ways to Traverse a MatrixIntroduction Matrix is defined as a group of similar or different data values arranged in rows and columns. In programming, matrices are represented as two-dimensional arrays. They are easily one of the most heavily used data structures in the field ...Discuss路4 likes路144 readsDSA
Yaya UsmanforUsman's Spaceyaya-usman.hashnode.net路Aug 25, 2022Wrap-up: Summary of my journey to being an outreachy intern at ElementHello 馃憢, I'm back with another blog post, since I was in procrastination mode and not a fan of writing馃お. I can't believe I'm writing my Outreachy wrap-up post. It moved quite quickly! I can still clearly recall the day I first learned about Outreac...Discuss路1 like路259 readsoutreachy
Terka CodesforTerka Codesterka-codes.hashnode.net路Jan 6, 2023Transform matrix property in CSSIntro 馃挰 In this article, you will learn how to use the transform property in CSS with array transforms to apply multiple transformations. The transform property with matrix transformation offers many possibilities to improve the look and feel of web...Discuss路1 like路32 readsCSS
Mohit TalniyaforTechnology Trumpetmohit-talniya.hashnode.net路Mar 22, 2023Mathematics for Machine LearningIn Mathematics, a vector is a quantity that has both magnitude and direction. It is typically represented as an arrow in a space of any number of dimensions and can be represented algebraically as an ordered list of numbers. Vectors can be added, sub...DiscussMathematics
Himanshu-holmesfortach.hashnode.net路Mar 4, 2023Code in java to find the transpose of a matrix.suppose your matrix A is 3x3 ok, now every element of your matrix is present at A(i,j) So, let Transpose of your matrix is B in which row changed to the column that is A(i,j) element is going to B(j,i); import java.util.Scanner; public class Main { ...DiscussJava
Karan ParekhforKaran's blogkaranparekh.hashnode.net路Feb 1, 2023Eigenvectors and EigenvaluesPrerequisites Linear Transformation and Determinants are the two concepts one needs to be clear about before attempting to learn what Eigenvectors and Eigenvalues are. Once familiar with them, the core concept is pretty simple to grasp. Core concept ...Discuss路54 readsLinear AlgebraMatrix
Karan ParekhforKaran's blogkaranparekh.hashnode.net路Jan 27, 2023Matrix DeterminantsA simple but important prerequisite for this topic is to understand how linear transformations transform the vector space around it. If you don't then you can read my article on Linear Transformation and come back here for Determinants. Core concept ...Discuss路63 readsLinear Algebradeterminants
Karan ParekhforKaran's blogkaranparekh.hashnode.net路Jan 22, 2023Linear TransformationCore concept Transformation is another word for function. A function takes in some input, transforms it, and spits out an output. This function or transformation is represented by a matrix. To better understand it, consider the following matrix. $$A ...Discuss路1 like路57 readsLinear Algebramatrices
Karan ParekhforKaran's blogkaranparekh.hashnode.net路Jan 19, 2023Matrix InversionPre-requisite To develop an intuition for Matrix Inversion it is important to be familiar with the concepts of Linear Transformation and Matrix Determinants. Please read these articles if you need a refresher. Core The Inverse of a matrix depends on ...Discuss路63 readsLinear AlgebraMatrix
Atharva forlegolas12.hashnode.net路Jan 14, 2023Daily Dose of DSA - Day 6class Solution { public: // In this approach we will traverse every element of the matrix , for each element we would check if its zero or not , if its non zero we would replace it with INT_MAX (replacing with INT_MAX and not zero because if we r...Discuss路1 like路130 readsC++
Karan ParekhforKaran's blogkaranparekh.hashnode.net路Jan 14, 2023Gaussian ReductionTwo simultaneous equations Consider the following system of two simultaneous equations $$\begin{array}{r} & 3a + b = 8 \quad...(1) \\ & a - 2b = 5 \quad...(2) \\ \end{array} $$ We can solve it by multiplying equation (1) by 2 and adding it to equatio...Discuss路90 readsLinear Algebramatrices
Basnetfor馃摎Cozey 鉁嶏笍Pratik Basnetcozey.hashnode.net路Jan 13, 2023馃惒3脳3 Matrix Addition馃惒// C Program Code For 3x3 Matrix Addition #include<stdio.h> int main() { int i, j, a[3][3], b[3][3], sum[3][3]; printf("Values of Matrix A: \n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { scanf("%d",&a[i][j]...Discuss路46 readsProgramming Blogs
Terka CodesforTerka Codesterka-codes.hashnode.net路Jan 6, 2023Transform matrix property in CSSIntro 馃挰 In this article, you will learn how to use the transform property in CSS with array transforms to apply multiple transformations. The transform property with matrix transformation offers many possibilities to improve the look and feel of web...Discuss路1 like路32 readsCSS