Here is a MATLAB/Octave script that will print the pattern in a triangle shape:
main.m447 chars23 lines
This script defines a function called print_pattern
that takes an input n
. It uses nested for
loops to iterate over the numbers from n
down to 1 and from 2 to n
, and prints the numbers in the desired pattern. The fprintf
function is used to print the numbers followed by a space, and fprintf('\n')
is used to move to the next line. Finally, the print_pattern(7)
function call will print the pattern for the input value of 7.
Output:
main.m111 chars14 lines
gistlibby LogSnag