photo

d bhaskar


Last seen: 2 years ago Active since 2023

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
3 Answers

RANK
12,341
of 300,392

REPUTATION
4

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20,934

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,373

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
Develop a program to display outputs based on inputs
clc clear all a=input('Enter Age in Years (1 to 120)='); if(a<17) fprintf("You can not Vote'); fprintf('Please take Your Vot...

2 years ago | 0

| accepted

Answered
How to create an array with user inputs?
clc clear all n=2; m=2; for i=1:n for j=1:m fprintf('Enter a(%d,%d)=',i,j); a(i,j)=input(''); end end

2 years ago | 0

Answered
while 1 and fget1 loop.
a=1; while 1 a=a+1; if(a>100) break end end

2 years ago | 0