Statistics
0 Questions
5 Answers
RANK
4,909
of 295,486
REPUTATION
10
CONTRIBUTIONS
0 Questions
5 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
RANK
of 20,236
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,950
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
Feeds
Dividing small number by a large number?
by default, Matlab uses double to store numbers. if for some reason you are using int32 variables in your program, you could cas...
12 years ago | 0
Insertion of character in between others in a string
well, appending a single character to another string is simple: str1 = ['AA', 's'] to insert characters in the middle of t...
12 years ago | 2
| accepted
interpolation to specific sequence of dates
first you have to convert the dates from strings to number, say day number from january 1st 1900 (or whenever Matlab/Exec start ...
12 years ago | 0
nested for loop
if nesting is an issue, you can use one loop only: a = 1:1:1000; b = .5:.1:3; N = length(a)*length(b); [A,B] = meshg...
12 years ago | 1
Printing results to a file or two screen.
i would use the fprintf function. first you have to open a file for writting and then simply loop your data and write each row t...
12 years ago | 0