How to convert a flowchart into a code
6 views (last 30 days)
Show older comments
3 Comments
Answers (1)
Yazan
on 29 Jul 2021
Edited: Yazan
on 29 Jul 2021
clc, clear,
% If you want the user to enter the vector x, then uncomment the lines 6 to 14
% and comment the line 16
% x = input('Enter an array of 5 numbers \n');
%
% if ~isnumeric(x)
% error('Enter a numeric array')
% end
%
% if length(x)<5
% error('Enter an array of five numbers')
% end
x = 4:8;
k = 1;
s = nan(1, 5);
c = nan(1, 5);
f = nan(1, 5);
while k<=5
s(k) = x(k).^2;
c(k) = x(k).^3;
f(k) = x(k).^4;
k = k+1;
end
fmt = ['\n Array %s = [' repmat('%g ',1, numel(s)) ']\n'];
fprintf(fmt, 's', s)
fprintf(fmt, 'c', c)
fprintf(fmt, 'f', f)
0 Comments
See Also
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!