- You can print the content/error messages/data on command window
- Then use dary command to write that into a text file
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
0 个评论
回答(1 个)
Puru Kathuria
2020-11-25
Try following these steps:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!