Skip to navigation Skip to content
Simon Technology Blog
  • Architecture
  • Cloud
  • Database
  • Develop
  • Hardware
  • Industry
  • Language
  • Mobile
  • Opensource
  • OS
  • Web
Main Navigation

Category: Mathematics

Applied Mathematics is a general term for mathematical theories and methods with a clear application purpose. The study of how to apply mathematical knowledge to the branches of mathematics in other categories (especially science) can be said to be the opposite of pure mathematics. Including differential equations, vector analysis, matrix, Fourier transform, complex analysis, numerical methods, probability theory, mathematical statistics, operations research, control theory, combinatorial mathematics, information theory and many other branches of mathematics, as well as from various application fields The study of the mathematical problem presented. Computational mathematics can sometimes be regarded as part of applied mathematics.

Recurrence of the binary tree

1.Minimum Depth of Binary Tree // Recursive version, time complexity O( n), space complexity O(logn)
private static int minDepth(TreeNode root) {
if (root == null) return 0;
return Math.min(minDe

October 17, 2021By Simo Mathematics Recursive, Two-forkLeave a Comment

Mathematics me – 2D video game

I am an amateur game programmer. I only do 2D games, no 3D things. I don’t have a background in mathematics, and many things trip me like bullet projections and angles.

I took two college-lev

October 17, 2021By Simo Mathematics 2D, Games, mathematics, VideoLeave a Comment

GroupBY string and count in Linb

I have a collection. The coll has strings:

Location=”Theater=1, Name=regal, Area=Area1″
Location=”Theater=34, Name=Karm, Area=Area4445″ etc. I have to extract the name bits from the string.

October 17, 2021By Simo Mathematics Count, groupby, LINB, Medium, stringLeave a Comment

R: How to resize my matrix by column

I have a disease matrix with the state state0CommercialA, where the columns are the states (i.e. “no disease”, “disease”, “death”) and the rows are the model period (i.e., 1, 2, 3,4, etc.).

I

October 17, 2021By Simo Mathematics Column, how to press, Matrix, my, re-zoomLeave a Comment

Algorithm – thousands of lights with triangles in 3D space

There are thousands of rays and triangles. We need to get all the intersections. If we use a normal two-level loop, we need O(mn) time complexity. Is there How to reduce the time complexity from O(

October 17, 2021By Simo Mathematics 3d, Algorithm, cross, light, Medium, space, thousands, triangleLeave a Comment

Layer & matrix_Latex

determinant \[ \left |\begin{array}{cccc} 1 &6 & 9 \7 &90 & f(x) \9 & \psi(x) &g(x) \\end{array}\right| \]

$$\left |\ begin{array}{cccc}1 &6 & 9 \7 &90 & f(x) \9 & \psi(x) &g(x) \\end{array}\

October 17, 2021By Simo Mathematics latex, layer, MatrixLeave a Comment

Linear regression

0-Basic question    Linear regression considers $n$ samples $\{\mathbf{x}_1,\mathbf{x}_2,\cdots,\mathbf {x}_n\}$, each sample corresponds to $m+1$ dimensional feature$\mathbf{x}_i=\{x_{i0},x_{i1},x

October 17, 2021By Simo Mathematics linear, regressionLeave a Comment

[Template] fast power

inline ll ksm(int x,int b){
int ans=1,base=x;
while(b){
if(b&1)ans*=x;
x*=x;
b>>=1;
}
return ans;
}

inline ll ksm(int x, int b){
int ans=1,base=x;
while(b){
if(b&1)ans*=x;
x*=x;
b>>=1;
}
return ans;
}

October 17, 2021By Simo Mathematics FAST, Power, TemplateLeave a Comment

SP1716 GSS3 dynamic DP (line segment tree + matrix multiplication)

Code:

#include
#define N 50001
#define ll long long
#define lson now<>1;
if(r>mid) t[now]=t[now]*t[rson];
}
void build(int l,int r,int now)
{
if(l==r)
{
t[now][0][0]=t[no

October 17, 2021By Simo Mathematics DP, Dynamics, GSS, GSS3, line segments, matrices, multiplications, SP, SP1716, treesLeave a Comment

How to find the Android version name in programming?

I write code to find such an Android version

String version=Build.VERSION.RELEASE; By using this code I get the version number but I want the version name.
How to get the version name?

October 17, 2021By Simo Mathematics Android, Find, How to Program, mode, Name, versionLeave a Comment

Posts navigation

Page 1 … Page 5 Page 6 Page 7 … Page 9
Recent Posts
  • Sencha-Touch-2 – Sencha Touch 2, Nested XML Analysis NodeValue
  • Add a separation line and format XML content
  • Is there a norm of simplified XML subsets?
  • Look at it when you write React
  • ReactJS – Present React Redux React-Router App to add the server to the Firebase hosted by the Firebase
Categories
  • Android
  • Apache
  • Apache Kafka
  • Asp
  • Auto-Test
  • Automated Build
  • Aws
  • Bitcoin
  • Browser
  • C & C++
  • C#
  • Centos
  • Cgi
  • Character
  • Cloud Service
  • Cocos2dx
  • Cordova
  • CSS
  • Data Structure
  • Delphi
  • Design Pattern
  • Dojo
  • Dubbo
  • ELK
  • Flex
  • football
  • Game
  • Hadoop
  • Hibernate
  • HTML
  • Hybrid
  • Intel
  • IOS
  • Ipad
  • iPhone
  • Java
  • Javascript
  • Jetty
  • JQuery
  • Jsp
  • Linux
  • Load Balance
  • Lua
  • Macbook
  • Macos
  • Mathematics
  • Micro Services
  • Monitoring
  • Motherboard
  • Mysql
  • Network Hardware
  • Network Marketing
  • Nginx
  • NodeJs
  • Nosql
  • Oracle
  • Os Theory
  • Performance
  • PHP
  • Postgresql
  • Power Designer
  • React
  • Redis
  • Regexp
  • Rom
  • Rss
  • Ruby
  • Search Engines
  • Shell Script
  • Silicon Valley
  • Silverlight
  • Software Design
  • Spring
  • Sql
  • Sqlite
  • Sqlserver
  • Storage
  • Storm
  • Surface
  • SVN
  • Swift
  • System Architecture
  • Tablet
  • Uncategorized
  • Unix
  • Visual Basic
  • Visual Studio
  • Web Crawler
  • WebService
  • Windows
  • Wireless
  • XML
  • ZooKeeper
Archives
  • October 2021
  • September 2021
  • August 2021
  • May 2021
  • April 2021
  • September 2020
  • September 2019
  • August 2019
  • June 2019
  • May 2019
  • April 2019
  • March 2019
© Simon Technology Blog 2025 • ThemeCountry Powered by WordPress