필터 지우기
필터 지우기

Hi everyone ! can anyone help me to do this , thank you

조회 수: 1 (최근 30일)
mina massoud
mina massoud 2019년 5월 14일
댓글: mina massoud 2019년 5월 14일
% I'd like to take the first 4x4 block of X and put it in Xa and Xb
% in such a way as to take the first and second column of X and put it in the first and second column in Xa
% and take the third column and the fourth column of X and put it in the third and fourth column of Xb
% second block 4x4 of X
% the (5,6) column of X in the (5,6) column of Xa
% the (7,8) column of X in the (5,6) column of Xb
clear all
clc
P=2;
M=4;
X=rand(M,P*M);
Xa=zeros(M,P*M);
Xb=zeros(M,P*M);
  댓글 수: 2
Fangjun Jiang
Fangjun Jiang 2019년 5월 14일
편집: Fangjun Jiang 2019년 5월 14일
double check all the column numbers in your question and make sure they are correct.
mina massoud
mina massoud 2019년 5월 14일
yes you are wright becasue at the end i need to make somthing like this for P=4:-
Xa(:,1:2)= X(:,1:2)
Xb(:,3:4)= X(:,3:4)
Xa(:,5:6)= X(:,5:6)
Xb(:,7:8)= X(:,7:8)
Xa(:,9:10)= X(:,9:10)
Xb(:,11:12)= X(:,11:12)
Xa(:,13:14)= X(:,13:14)
Xb(:,15:16)= X(:,15:16)
so can i do it with somthing more general , thank u

댓글을 달려면 로그인하십시오.

채택된 답변

madhan ravi
madhan ravi 2019년 5월 14일
편집: madhan ravi 2019년 5월 14일
[~,n]=size(X);
xai=[1:4:n,2:4:n];
xbi=[3:4:n,4:4:n];
Xa(:,xai)=X(:,xai)
Xb(:,xbi)=X(:,xbi)
  댓글 수: 3
madhan ravi
madhan ravi 2019년 5월 14일
편집: madhan ravi 2019년 5월 14일
Thank you :) Fangjun , you’re totally right.
mina massoud
mina massoud 2019년 5월 14일
thank you guys very much , i really appreciate it :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Array Geometries and Analysis에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by