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,?

1 次查看(过去 30 天)
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

回答(1 个)

Puru Kathuria
Puru Kathuria 2020-11-25
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

类别

Help CenterFile Exchange 中查找有关 Specialized Power Systems 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by