subtract two parameters with diff dimension

1 次查看(过去 30 天)
i want to subtract two parameters x and y.X has dimension 100* 784, Y has dimension 784*784.Can anybody help
  1 个评论
Walter Roberson
Walter Roberson 2013-11-22
If you have a particular position (J,K) in the output matrix, how would you calculate the value for that location?
OutMatrix(J,K) = ???

请先登录,再进行评论。

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-11-22
The size of Y is greater then the size of X, we can subtract the first 100 rows, but what about the remaining rows in Y? Look at this example, maybe this is what you want, if not, give more details
Y=rand(784);
X=rand(100,784);
Z=[X;zeros(784-100,784)]; % to make Y and X the same size
out=Y-Z;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by