photo

ANMOL Shakya


Last seen: 1 year ago Active since 2022

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
multiplication table using for loop
clc; clear all; close all; N= 1:10; f = zeros(size(N)); for i = 1:length(N); f(i)= 17*N(i); end table1 = [N' f']

2 years ago | 0