フィルターのクリア

Wrong size of a matrix after specyfying a condition

5 ビュー (過去 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 Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by