Filter löschen
Filter löschen

subtract two parameters with diff dimension

3 Ansichten (letzte 30 Tage)
subha
subha am 22 Nov. 2013
Beantwortet: Azzi Abdelmalek am 22 Nov. 2013
i want to subtract two parameters x and y.X has dimension 100* 784, Y has dimension 784*784.Can anybody help
  1 Kommentar
Walter Roberson
Walter Roberson am 22 Nov. 2013
If you have a particular position (J,K) in the output matrix, how would you calculate the value for that location?
OutMatrix(J,K) = ???

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 22 Nov. 2013
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;

Weitere Antworten (0)

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by