how to make the graph start at axis-y = 0 ?
2 ビュー (過去 30 日間)
古いコメントを表示

How to fix the graph, so that the black dot, start at 0 ?
0 件のコメント
回答 (2 件)
Max Heimann
2022 年 1 月 13 日
Assuming the data you are plotting are vectors called
x_data, y_data
You could offset your data to achieve your goal.
x_data = x_data - x_data(1);
y_data = y_data - y_data(1);
Now your graph will start at 0,0
0 件のコメント
yanqi liu
2022 年 1 月 14 日
yes,sir,may be set options 'ValidationFrequency' to make different valid step
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!