photo

John Jamieson


Last seen: bijna 5 jaar ago Active since 2020

Followers: 0   Following: 0

Statistics

MATLAB Answers

10 Questions
1 Answer

RANK
32.895
of 300.365

REPUTATION
1

CONTRIBUTIONS
10 Questions
1 Answer

ANSWER ACCEPTANCE
20.0%

VOTES RECEIVED
1

RANK
 of 20.933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168.262

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

  • Thankful Level 1

View badges

Feeds

View by

Question


How to count number of words in a string
My code is as follows function [wordcount] = wordCount(strtxt, n) wordcount=0; y=1; for x=1:length(strtxt) space=strfind(st...

bijna 5 jaar ago | 2 answers | 1

2

answers

Question


How to add a newline after a certain number of characters
function [strMultiLines] = nCharLine(strtxt, n) Length=length(strtxt); strMultiLines=strtxt; strMultiLines=[strMultiLines(1:n...

bijna 5 jaar ago | 2 answers | 0

2

answers

Question


How to replace all newline characters in a string with a space?
I want to replace all newline characters in an inputted string of characters "strtxt" with spaces. However, I've no idea how to ...

bijna 5 jaar ago | 2 answers | 0

2

answers

Question


How do I output data from a txt file?
Let me explain, I want to take these messages from a .txt file: Congratulations! Way to go! You're amazing! Fantastic! ...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


How do I call upon a function in another function?
This is what I have: function [Output] = Jamiesonlab5 () Result=input('Please press any key to roll the dice, press Q or q to ...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


How do I use characters with an if statement?
My code looks like this Prompt='Please press any key to roll the dice, press Q or q to quit program: '; str=input(Prompt, 's')...

bijna 5 jaar ago | 2 answers | 0

2

answers

Question


Why does rem(Centnum,5) give me an answer that is not zero?
I created the following code in order to isolate canadian coins from the value of a cheque: function [] = Jamiesonlab4 () Cheq...

ongeveer 5 jaar ago | 2 answers | 0

2

answers

Question


Why is my code displaying two messages instead of one?
if BirthM == 1 fprintf (fileID,'\n you are %d years %d month and %d days old', BirthY,BirthM,BirthD); elseif Birth...

ongeveer 5 jaar ago | 1 answer | 0

1

answer

Question


Why is this giving me two outputs instead of one and how do I fix it?
if BirthM == 1 if BirthD == 1 fprintf (fileID,'\n you are %d years %d month and %d day old', BirthY,Birth...

ongeveer 5 jaar ago | 1 answer | 0

1

answer

Answered
How can I create a function that converts the number of a month to the name of a month?
This question has been solved. I simply had to replace a %d where Month was located in the fprintf with %s. If I do that, the fu...

ongeveer 5 jaar ago | 0

Question


How can I create a function that converts the number of a month to the name of a month?
So far I have this. curdateTime = clock; Monthnumber=curdateTime(2); Year=curdateTime(1); Day=curdateTime(3); ...

ongeveer 5 jaar ago | 2 answers | 0

2

answers