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 )
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
q=mtimes(z,B);
x=plus(Y,q);
figure()
imshow(x)
1 件のコメント
Guillaume
2018 年 2 月 1 日
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.
回答 (0 件)
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!