Davifus - MATLAB Central
photo

Davifus


Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 10/19 to 01/25Use left and right arrows to move selectionFrom 10/19Use left and right arrows to move left selectionTo 01/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

RANK
252,248
of 296,364

REPUTATION
0

CONTRIBUTIONS
4 Questions
0 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


how to modify input-output script to show how many line were copied.
ifn = input( 'input file name: ', 's' ); ofn = input('output file name: ', 's' ); ih = fopen( ifn, 'r' ); oh = fopen( ofn, 'w...

5 years ago | 1 answer | 0

1

answer

Question


How do i change my script to print out the second word of each even line?
fn = input( 'file name: ', 's' ); fh = fopen( fn, 'r' ); ln = ''; count=1; while ischar( ln ) ln = fgets( fh ); ...

5 years ago | 1 answer | 0

1

answer

Question


Creating vectors by rand() and looping it
The question: Create a vector A with 10 integer numbers by rand(), and ceil() or floor() or round. Each number is between 5 and...

5 years ago | 1 answer | 0

1

answer

Question


Part of my program wont work and i just cant figure it out why.
The question is "The program asks for an input of a score(0-100). If the score is greater than or equal to 60, display “Congratu...

5 years ago | 1 answer | 0

1

answer
Go to top of page