Plot different length vectors on the same x-axis

2 ビュー (過去 30 日間)
Mattia Boldrini
Mattia Boldrini 2020 年 5 月 29 日
コメント済み: Mattia Boldrini 2020 年 5 月 29 日
Hi, I've got the following situation on my hands:
I have three matrixes that contain the number of epochs plus a few metrics for the training of a machine learning algorithm, for a total of 5 columns each.
The first table has 193 rows, the second and third ones have 173.
I would like to plot the second column of each matrix on the same plot, using the first column of the biggest matrix as x axis. My idea would be to obtain a plot in which the first line arrives to the limit of the x axis and the other two stop earlier.
Thank you for your attention.

採用された回答

Alberto Mora
Alberto Mora 2020 年 5 月 29 日
So you have to do something like
plot(matix1(:,1),matix1(:,2)); hold on;
plot(matix1(1:173,1),matix2(:,2));
plot(matix1(1:173,1),matix3(:,2));
  1 件のコメント
Mattia Boldrini
Mattia Boldrini 2020 年 5 月 29 日
well thank you, that was easier than I'd thought

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by