print statement in matlab code example
Example 1: print in matlab
disp("this")
# or
fprint("this")
Example 2: print in matlab
for id=1:num_ids
% do something
if isempty(stress_value)
fprintf('The following ID does not have an assigned stress value: %d\n',id)
continue
end
% do something
end