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!