
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
대략 8시간 전
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!