
Matlab2025b cannot plot the variable values
100 ビュー (過去 30 日間)
古いコメントを表示
I selected the variable column as in the image above; however, plotting is not enabled.It was working normally, but selection suddenly stopped working. Reinstalling the software did not resolve the issue.
回答 (1 件)
Image Analyst
2026 年 1 月 11 日 18:53
What does this show
>> whos Derating_Cap
Since it's a 3-D array, maybe try extracting out a vector into a single variable and then plot that.
% Get first plane/slice as a 2-D matrix
plane1 = Derating_Cap(:, :, 1);
column1 = plane1(:, 1);
plane1 = Derating_Cap(:, 1, :);
plane1 = squeeze(plane1);
column1 = plane1(:, 1);
2 件のコメント
Image Analyst
2026 年 1 月 15 日 4:46
Then call tech support. I was just giving you a possible workaround.
参考
カテゴリ
Help Center および File Exchange で Downloads についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!