Mathlab loops questıons about new starters

Write a program which asks the user to enter their name and N and integer, and displays that name N times. See the help of input to read strings.
Run 1:
Enter name: Matlab
Enter N: 3
Matlab
Matlab
Matlab

1 Comment

If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks).

Sign in to comment.

 Accepted Answer

clear
clc
str = input('Enter name:','s') ;
N = input('Enter N:') ;
for i=1:N
disp(str);
end
Try this. But as a starter, you'd better utilize the HELP and get started by your self. You'll find it not that hard.

5 Comments

like @KSSV said "Read about the function input."
ı cant do two queston too can u help them ?
We discourage providing complete answers to homework questions.
These are not my homework. Teacher shared some questıons about mıdterm and ı cant solve this 3 questıon.And he did not share answers. I am thinking this questıons will be in midterm this reason ı have to fınd answers.
Then it might be attempted academic fraud, instead of being lazy and posting a homework question.
Don't you think you will learn more if you actually try to learn from this question? You can find guidelines for posting homework on this forum here.

Sign in to comment.

More Answers (1)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Asked:

on 29 Mar 2021

Commented:

Rik
on 29 Mar 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!