Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Transfer Array into another array

조회 수: 2 (최근 30일)
Jethro Perez
Jethro Perez 2020년 11월 12일
마감: MATLAB Answer Bot 2021년 8월 20일
I have two arrays
n=input
A=randi([0 20],1,n);
B=randi([0 10]',1,n)';
How do I make an array C that has the values of A as the first row and B as the first column, then fill the rest as the product of A*B.
like a multiplication table.
  댓글 수: 5
James Tursa
James Tursa 2020년 11월 12일
편집: James Tursa 2020년 11월 12일
Yes, the solution is simple. Some hints for you:
You can concatenate variables with the [ ] notation. E.g.,
[x,y] concatenates the variables horizontally
[x;y] concatenates the variables vertically
You can transpose a vector from row to column (or vice-versa) with the .' operator, or just ' if you know the variable is real. E.g., if x is a real row vector, then x' will be a real column vector.
You can multiply two variables element-wise with the .* operator. If one of these is a row and the other one is a column, then the result will be a 2D matrix with the element-wise products as the elements.
See if you can experiment and work with the above to come up with the parts you want, and then see if you can use the [ ] notation to put them all together into the final matrix you want. Come back and ask more questions when you have trouble with your progress.
Jethro Perez
Jethro Perez 2020년 11월 12일
Thank you so much... your little paragraph summarize 120 minutes of lecture.

답변 (1개)

Sourabh Kondapaka
Sourabh Kondapaka 2020년 11월 16일
Looks like James Tursa has resolved your query. You can use built-in functions like horzcat and vertcat to achieve the same thing.
I would recommend you to check out the free MATLAB OnRamp Course to get started with the fundamentals of Matlab.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by