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

7 vues (au cours des 30 derniers jours)
健気 大川
健気 大川 le 7 Mai 2021
Commenté : 健気 大川 le 27 Mai 2021
図のように、B,C,D,EをまとめてG列のようにしたいです。B,C,D,Eは異なる列数です。どなたか助言お願いします。

Réponse acceptée

Hernia Baby
Hernia Baby le 7 Mai 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 commentaire
健気 大川
健気 大川 le 27 Mai 2021
お忙しい中、ありがとうございます!解決いたしました!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!