the code works well only for few cases when the array dimension is same ,need help when array dimension slightly changes(need to add q till the size of y )
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
q=mtimes(z,B);
x=plus(Y,q);
figure()
imshow(x)
1 Kommentar
Guillaume
am 1 Feb. 2018
A less obfuscated way to write the exact same code:
q = z * B;
x = Y + q;
figure;
imshow(x);
I have no idea what your question is. Please explain the problem you're having in details.
Antworten (0)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!