본문 바로가기

전체 글

(426)
Vitamin C 비타민 씨 usage/side effects/dosage 용법/효능/부작용 Vitamin C 비타민 씨 usage/side effects/dosage 용법/효능/부작용 about Vitamin C mega dose (과용량 투여에 관하여) 2019/01/31 - [Life/Health care] - Megadose/Overdose Vitamin C, 비타민 C 메가도스/오버도스/과복용 usage/side effects/dosage 효능/부작용/성인,소아 용법2019/01/07 - [Life/Health care] - VitaminC megadose,overdose 비타민씨 메가도스,과복용,오버도스 usage/side effects/dosage/fatigue/supplement/antioxidant/효능/부작용/성인,소아 용법/건강/피로회복/영양제/항산화 원문 Origin ( H..
Magnesium 마그네슘 usage/side effects/dosage 용법/효능/부작용 Magnesium 마그네슘 usage/side effects/dosage 용법/효능/부작용 원문 Origin ( Here ) Benefits Deficiency Recommended intake Sources Risks 이점 / 결핍 / 추천 용량 / 위험 Magnesium plays a role in over 300 enzymatic reactions within the body, including the metabolism of food, synthesis of fatty acids and proteins, and the transmission of nerve impulses.The human body contains around 25 gram (g) of magnesium, 50 to 60 perc..
Lecithin 레시틴 usage/side effects/dosage 효능/부작용/용법 Lecithin 레시틴 usage/side effects/dosage 효능/부작용/용법 원문 Origin ( Here ) 포스파티딜콜린에 관한 포스팅About Phostidylcoline 2019/02/12 - [Life/Health care] - Phosphatidylcholine/Lecithin 포스파티딜콜린/레시틴 usage/side effects/dosage 효능/부작용/성인,소아 용법, 뇌기능, 인지능력 향상 Everything you need to know about lecithin레시틴에 대해 알아야 할 모든 것 Lecithin describes a group of fatty substances found in plant and animal tissues. Lecithin is essenti..
Maca 마카 usage/side effects/dosage 효능/부작용/용법 Maca 마카 usage/side effects/dosage 효능/부작용/용법(1) 2019/01/25 - [Life/Health care] - Maca 마카 usage/side effects/dosage 효능/부작용/성인,소아 용법(2) 먹고있어서 공부할겸 원문 Origin ( Here ) Maca (Lepidium meyenii) is the root of a vegetable native to the Andes region of Peru. Known as "Peruvian ginseng" (even though it doesn't belong to the same botanical family as ginseng), maca is consumed as a food and is said to boos..
Constructor Chaining in Java, 자바 생성자 연결/연속/체인 코드, example 예제 보호되어 있는 글입니다.
L-Arginine 아르기닌 usage/side effects/dosage 효능/부작용/성인,소아 용법(1) L-Arginine 아르기닌 usage/side effects/dosage 효능/부작용/성인,소아 용법(1) 먹을까 말까해서 공부할겸I was about to buy this, so i did study.. (원문 origin link) 2편은 아래에2nd one is below 2018/12/16 - [Life/Health care] - L-Arginine 아르기닌 usage/side effects/dosage 효능/부작용/성인,소아 용법(2) WHAT IS ARGININE AND HOW DOES IT WORK?아르기닌은 무엇이며 어떻게 작용하나? 아르기닌은 "아미노산"이라고 불리는 화학적 빌딩 블록입니다. 그것은 식품에서 얻을 수 있고, 신체가 단백질을 만드는 데 필요합니다. 아르기닌은 붉은 살코기,..
Aracade Intro #35 firstDigit. Algorithm, 알고리즘, Codefights, CodeSignal, 코드파이트, 코드시그널, 예제, example, c++ java c# scalar Aracade Intro #35 firstDigit. Algorithm, 알고리즘, Codefights, CodeSignal, 코드파이트, 코드시그널, 예제, example, c++ java c# scalar Q. Find the leftmost digit that occurs in a given string. 입력받은 string 내에서 가장 왼쪽에 있는 숫자를 찾아라 e.g. Input -> inputString = "var_1__Int" Output -> firstDigit(inputString) = '1' Input -> inputString = "q2q-q" Output -> firstDigit(inputString) = '2' Input -> inputString = "0ss" Output -..
OpenCV How to get min/max value from matrix, 매트릭스 최소값/최대값. Java,c++,cpp,imageprocessing - Core 함수에서 minMaxLoc(Matrix) 를 호출하면 MinMaxLocResult 객체를 반환한다. 반환받은 객체에서 다양한 값들을 뽑아낼 수 있는데, 최소/최대 값을 뽑는 것은.. If you call "minMaxLoc(Matrix)" method in Core class, you could get MinMaxLocResult instance. And we could get various val from it, anyway, the way to get min/max val... 코드.. 코드를 보자!!!! Code.. lemme see code!!!!!! example public double getMax(final Mat inputMat) { return Core.minMaxLoc(in..