異なる列数の行列の連結について

8 views (last 30 days)
健気 大川
健気 大川 on 7 May 2021
Commented: 健気 大川 on 27 May 2021
図のように、B,C,D,EをまとめてG列のようにしたいです。B,C,D,Eは異なる列数です。どなたか助言お願いします。

Accepted Answer

Hernia Baby
Hernia Baby on 7 May 2021
数字だけでしたので、とりあえず数字のみ整列させます。
文字列も取り扱いありますが、stringに変えるだけなので大体同じです。
エクセルデータも添付しておきます。
clc,clear,close all;
% 数値だけ読み込む
[~,~,A] = xlsread('test4matlab.xlsx');
% 1列にまとめる
A = A(:);
% Aのデータ型をcellからdoubleへ
A = cell2mat(A);
% NaNが邪魔なので消す
ANS = rmmissing(A)
ANS =
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  1 Comment
健気 大川
健気 大川 on 27 May 2021
お忙しい中、ありがとうございます!解決いたしました!

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!