Wrong size of a matrix after specyfying a condition

조회 수: 1 (최근 30일)
Dominika
Dominika 2014년 6월 20일
댓글: Dominika 2014년 6월 20일
Hi
I want to obtain a matrix subtracting 2 matrices, I have 2 different cases:
x=f_close<=fc
A(x)=abs(TL_close(x)-TL_interp(x)) % substraction of 2 graphs for f smaller than fc
y=f_close>fc
B(y)=abs(TL_close(y)-TL_interp(y)) % substraction of 2 graphs for f greater than fc
fc_close, TL_close and TL_interp are of dimentions 1x155
for condition x it works, I get the matrix A 1x59
but for condition y I get the matrix B 1x155 with zeros from column 1 to 59 and good values from column 60 to 155. How can I obtain the right size of matrix B? (1x96 instead of 1x155).
Thanks a lot,

채택된 답변

Sara
Sara 2014년 6월 20일
Replace A(x) and B(y) with A= and B= so you have ONLY the elements you are interested in.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by