
Matlab2025b cannot plot the variable values
65 次查看(过去 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
about 7 hours 前
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);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Standard File Formats 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!