Don't want to display results on command window

조회 수: 1 (최근 30일)
Ali Raza
Ali Raza 2022년 8월 25일
답변: Walter Roberson 2022년 8월 25일
When I run the following code:
clc; clear all; close all;
mpc = loadcase(case33);
tie_switches = [33 34 35 36 37];
for i=1:length(tie_switches)
mpc.branch(tie_switches(i),11)=0;
end
Losses =runpf(mpc);
results are also showing on command window and saved in workspace in the struct name 'Losses'. But I don't want to display results on command window.

채택된 답변

Walter Roberson
Walter Roberson 2022년 8월 25일
Change
Losses =runpf(mpc);
to
evalc('Losses =runpf(mpc);');

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Controller Creation에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by