---
title: MMULT – คูณเมทริกซ์
url: https://www.thepexcel.com/functions/excel/math-and-trigonometry/mmult/
type: function-explainer
program: Excel
syntax: "=MMULT(array1, array2)"
date: 2025-12-02
updated: 2025-12-17
scores:
  popularity: 5
  difficulty: 2
  usefulness: 6
---

# MMULT – คูณเมทริกซ์

> คูณเมทริกซ์

## คำอธิบาย

คูณเมทริกซ์ 2 ตัวเข้าด้วยกัน

## Syntax

```excel
=MMULT(array1, array2)
```

## Arguments

| Name | Required | Type | Default | Description |
| --- | --- | --- | --- | --- |
| array1 | Yes | Range/Array |  | เมทริกซ์ตัวตั้ง |
| array2 | Yes | Range/Array |  | เมทริกซ์ตัวคูณ |

## ตัวอย่าง

### 1. คูณเมทริกซ์

```excel
=MMULT({1,2; 3,4}, {1;1})
```

**ผลลัพธ์:** `{3; 7}`

แถว 1: 1*1 + 2*1 = 3, แถว 2: 3*1 + 4*1 = 7

### 2. รวมยอดแบบถ่วงน้ำหนัก

```excel
=MMULT(Scores, Weights)
```

**ผลลัพธ์:** `คะแนนรวม`

คล้าย SUMPRODUCT แต่สามารถคืนค่าได้หลายแถวพร้อมกัน

### 3. หมุนและคูณ

```excel
=MMULT(TRANSPOSE(Vector1), Vector2)
```

**ผลลัพธ์:** `Dot Product`

หาผลคูณจุด (Dot Product) ของสองเวกเตอร์

## ฟังก์ชันที่เกี่ยวข้อง

- [MINVERSE – หาค่า Inverse Matrix](https://www.thepexcel.com/functions/excel/math-and-trigonometry/minverse/)
- [MUNIT – สร้างเมทริกซ์เอกลักษณ์](https://www.thepexcel.com/functions/excel/math-and-trigonometry/munit/)
- [PRODUCT – หาผลคูณของตัวเลข](https://www.thepexcel.com/functions/excel/math-and-trigonometry/product/)
- [ฟังก์ชัน SUMPRODUCT ใน Excel](https://www.thepexcel.com/functions/excel/math-and-trigonometry/sumproduct/)
- [TRANSPOSE – กลับตาราง (Transpose)](https://www.thepexcel.com/functions/excel/lookup-and-reference/transpose/)

## แหล่งข้อมูลเพิ่มเติม

- [Official Documentation](https://support.microsoft.com/en-us/office/mmult-function-40593ed7-a3cd-4b6b-b9a3-e4ad3c7245eb) _(official)_
- [ExcelJet](https://exceljet.net/excel-functions/excel-mmult-function) _(guide)_

---

_Source: [https://www.thepexcel.com/functions/excel/math-and-trigonometry/mmult/](https://www.thepexcel.com/functions/excel/math-and-trigonometry/mmult/)_
