# 2017q1 Homework5 (matrix) contributed by <`hunng`> ## 開發環境 * OS: Ubuntu 16.04.2 LTS * Architecture: x86_64 * CPU op-mode(s): 32-bit, 64-bit * CPU(s): 4 * CPU Model name: Intel(R) Core(TM) i5-4200U CPU @ 1.60 GHz * L1d cache: 32 K * L1i cache: 32 K * L2 cache: 256 K * L3 cache: 3072 K * MemTotal: 8056592 KB ## define 中的 "##" 在 matrix.h 中 ``` #define DECLARE_MATRIX(col, row) \ typedef struct { float values[col][row]; } Mat ## col ## x ## row ``` 從底下的 18 行中可以看到 ``` void (*assign)(Matrix *thiz, Mat4x4); ``` 效果為將`Mat`,`4`,`x`,`4` 組合成為 `Mat4x4` Token-Pasting Operator (##) It permits separate tokens to be joined into a single token. record from [here](https://msdn.microsoft.com/en-us/library/09dwwt6y(VS.80).aspx) ## 修改其 row、col 已固定為 4 的限制 ``` void (*assign)(Matrix *thiz, Mat4x4); ``` 若要遵循之前 Mat4x4 這種格式,代表在 assign 函氏中需要輸入不同的 struct 避免這種問題,所以將使用的函式改為 ``` static void assign(Matrix *thiz, float *src, int r, int c) ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up