I want to assign values from a 1d array to 2d array. How should I do it?

조회 수: 9 (최근 30일)
Please copy paste above address if image is not visible.
The function tridiagonal(n) gives values of x in a 1 dimensional array. I want to assign it to 2 dimensional array of w(s,t). However it shows error saying "Undefined function 'x' for input arguments of type 'double'."

채택된 답변

Jan
Jan 2013년 8월 21일
편집: Jan 2013년 8월 21일
You have not assigned a value to x. Maybe you meant:
for s=2:m
x = tridiagonal(n); % assign x!
for t=1:n
w(s,t)=x(t);
end
end
But you can save one of the for loops:
for s=2:m
x = tridiagonal(n); % assign x!
w(s, :) = x; % or x', depending on dimension of x
end

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 8월 21일
x is not defined in your code

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by