フィルターのクリア

accessing the element for the matrix but that elemnt is in the form of row vector

2 ビュー (過去 30 日間)
VASUNDHARA V
VASUNDHARA V 2022 年 2 月 22 日
コメント済み: DGM 2022 年 2 月 22 日
accessing the element for the matrix but that elemnt is in the form accessing the element for the matrix but that elemnt is in the form of row vectorof row vector .eg
A=[ d(1,:) d(5,:) d(1,:)
d(1,:) d(4,:) d(6,:)]
and d=[111111
111111
111111
111111
111111
111111]
so code is
For j=1:6
temp1=A(j)
so it will generate a result as 111111 only not a single 1 at j=1.
your help is highly appreciated
  1 件のコメント
DGM
DGM 2022 年 2 月 22 日
I don't know what you're asking for, least of all because the code already does what you appear to be asking.
d = [111111
111111
111111
111111
111111
111111]
d = 6×1
111111 111111 111111 111111 111111 111111
A = [d(1,:) d(5,:) d(1,:)
d(1,:) d(4,:) d(6,:)]
A = 2×3
111111 111111 111111 111111 111111 111111
for j = 1:6
temp1 = A(j)
end
temp1 = 111111
temp1 = 111111
temp1 = 111111
temp1 = 111111
temp1 = 111111
temp1 = 111111

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by