異なる列数の行列の連結について
6 views (last 30 days)
Show older comments
図のように、B,C,D,EをまとめてG列のようにしたいです。B,C,D,Eは異なる列数です。どなたか助言お願いします。
0 Comments
Accepted Answer
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
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!