Filter löschen
Filter löschen

how to write celll array to text file as an error output..? (below, Error_PV_comp is an cell aray). In the below example I am pop uping the error output but I need an error statements as an text file. Which logic and syntax to use,?

2 Ansichten (letzte 30 Tage)
if error_flag_PV_comp && error_flag_PS_comp && error_flag_PL_comp && error_flag_MV_comp && error_flag_MS_comp && error_flag_ML_comp ~= 0
errordlg(Error_PV_comp,'Error in component and sub-component total power losses');
errordlg(Error_PS_comp,'Error in component and sub-component drag power losses');
errordlg(Error_PL_comp,'Error in component and sub-component torque dependent power losses');
errordlg(Error_MV_comp,'Error in component and sub-component total torque losses');
errordlg(Error_MS_comp,'Error in component and sub-component drag torque losses');
errordlg(Error_ML_comp,'Error in component and sub-component torque dependent losses');
else
disp("There are no differences in components and sub-components losses")
end

Antworten (1)

Puru Kathuria
Puru Kathuria am 25 Nov. 2020
Try following these steps:
  1. You can print the content/error messages/data on command window
  2. Then use dary command to write that into a text file

Kategorien

Mehr zu Specialized Power Systems finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by