Feeds
질문
zeros of a matrix
I have a matrix and i want to create a column of zeros the size of the matrix. M=rand(5) A=zeros(size(M,2)) the error i get i...
대략 3년 전 | 답변 수: 2 | 0
2
답변질문
Columns of a matrix given a condition
tt=[0 0 0 0 0 1 0 0; 1 1 1 0 0 0 0 0; -1 0 0 0 0 0 0 0 ; 1 0 0 0 0 0 0 0; 0 0 0 0 1 1 0 1; 0 0 0 0 0 0 0 1 ] I want to be ab...
대략 3년 전 | 답변 수: 1 | 0
1
답변질문
finding the Column name of a matrix
find the column name correspnding to particular values in a row of a mertrix i tried this but not working A(find(A(50,:)=1), 2...
대략 3년 전 | 답변 수: 1 | 0
1
답변질문
Solving Linear Algebra; matrix
proof that dim(col(R)) + dim(N(R)) = number of columns in R V={[2 3 4]', [4 5 6]', [3 4 5]'} how can i prove this for any m...
대략 3년 전 | 답변 수: 0 | 0
0
답변질문
Error with writing a function
function span(v, c) A = []; n = length(A); for i=1:n u=c{i}; u= u'; A = [A u(:)]; end v= v'; v=v(:); if r...
대략 3년 전 | 답변 수: 3 | 0
3
답변질문
string extraction from a table
How can I extract data for the Brown? I would appreciate some help, i have been stuck with this. Age = [38;43;38;40;49;45...
대략 3년 전 | 답변 수: 1 | 0
1
답변질문
Indexing of an array
I have a result array of 50 x 50 and i would like to extract all information for when a certain column equal a certain result.
대략 3년 전 | 답변 수: 1 | 0
