Create a new matrix to apply a function
조회 수: 1 (최근 30일)
이전 댓글 표시
Hey guys thanks in advance for reading this and helping me.
I have a matrix range_compression(2032 x 400). For each column of that matrix I want to apply a function(freq2time).This function transforms a vector in frequency domain to a vector in time domain. So I need to apply this function in this matrix, so first, I need to save each column of range_compression matrix and apply the function for all the columns.
And I want that after the apllication of the function for each column of range_compression, it saves the variable range_compressed, column by column in another matrix.
How can I do this, thank you
Range_compression=surv_matrix.*conj(ref_matrix);
[time_rc,Range_compressed]=freq2time(Range_compression,doppler_freqSurv);
댓글 수: 5
dpb
2022년 6월 10일
Well, did you even try the vector approach first?
Have you even tried to address an array column using the <colon, :> operator as illustrated in the Array Indexing section of the <help/matlab/getting-started-with-matlab> guide in the local/online documentation?
If you are as yet so unfamiliar with basic MATLAB syntax, I'd suggest the time invested in the OnRamp tutorials @<Tutorials/matlab-onramp> will more than pay back.
답변 (1개)
Ganesh Gudipati
2022년 6월 15일
Hi Miguel,
As per my understanding you have a matrix and a function. The function actually process on each column of the matrix and the resultant column will be stored in a different matrix.
The general MATLAB operations used to deal with matrices are attached below
Range_compression(i,j); % to access a cell where row=i and column=j
Range_compression(i,:); % to access all cells where row=i;
Range_compression(:,j); % to access all cells where column=j;
size(Range_compression,1); % gives no of rows in Range_compression
size(Range_compression,2); % gives no of columns in Range_compression
Now you can use a for loop to iterate through all the columns and call freq2time inside the for loop
for j = 1:size(Range_compression,2)
temp = freq2time(Range_compression(:,j))
Range_compressed = [Range_compressed,temp] % appending the column
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!