Implementation of a matrix
이전 댓글 표시
Hello!
I want to implement a function, which has n as an input an outputs the following matrix:

Can someone help me please?
댓글 수: 2
madhan ravi
2020년 6월 18일
Huh... why waste others time by asking a question if it’s going to be deleted anyway??
Rena Berman
2020년 10월 12일
(Answers Dev) Restored edit
채택된 답변
추가 답변 (2개)
Vishal Gaur
2020년 6월 16일
Code to generate the mentioned output is:
for i=x
for j=1:n
matCos(i,j) = cos(j*x(i)*exp(1));
end
end
David Hill
2020년 6월 16일
If x and e are symbolic
syms x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 e;
x=[x1 x2 x3 x4 x5 x6 x7 x8 x9 x10];
for k=1:n
y(k,:)=cos((1:n)*k*x(k)*e);
end
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!