Help with writing program with the matrix
显示 更早的评论
I can generate a X matrix with 64*1 dimension and now I want to multiply this matrix with a D matrix of dimensions 224*64 and obtain a matrix Y.
[Y] = [D]*[x]
Can anyone help me get a program which can be fit to find Y easily.
Your help is appriciated. Thank You.
回答(1 个)
Juan Camilo Medina
2013-3-13
Y=D*X;
If you have Y and are looking for X then:
X=D\Y;
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!