Plot Cell Array Data

Plots data stored in cell arrays
ダウンロード: 8
更新 2024/9/5

ライセンスの表示

This function plots multiple 2-D lines in a figure. It is an alternative to using: plot(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn)
plot2(X,Y) creates a 2-D line plot of the data in Y versus the corresponding values in X.
plot2(X,Y,LineSpec) creates the plot using the specified line style, marker, and color.
X,Y, and LineSpec are cell arrays with the same length, such that X{i} , Y{i} , and LineSpec{i} are X data, Y data, and line specifications of the ith line to be plotted.
Example:
X{1}=-pi:pi/100:pi;
Y{1}=cos(X{1});
LineSpec{1}='b--';
X{2}=-pi:pi/100:pi;
Y{2}=sin(X{2});
LineSpec{2}='r-';
figure;
plot2(X,Y);
figure;
plot2(X,Y,LineSpec);

引用

Ayad Al-Rumaithi (2025). Plot Cell Array Data (https://www.mathworks.com/matlabcentral/fileexchange/131723-plot-cell-array-data), MATLAB Central File Exchange. に取得済み.

MATLAB リリースの互換性
作成: R2023a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
タグ タグを追加

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.1

Added website

1.0.0