R.G.
St. Petersburg State Marine Technical University
Followers: 0 Following: 0
PhD student
Statistics
0 Questions
6 Answers
RANK
4 138
of 295 467
REPUTATION
12
CONTRIBUTIONS
0 Questions
6 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20 234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153 912
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
How to encode alphabets using tables
Hello! Check following code. I used char(65:90) to create A-Z sequence, and Map container to map symbols into codes. symbols =...
ungefär 5 år ago | 0
| accepted
recode the missing values equal to the preceding recorded value
Hello! You can use following code: a = [ 1990 339; 1991 339.1; 1992 338.8; 1993 -999; 1994 339.5; 1995 338; 1996 -999; 1997 -99...
ungefär 5 år ago | 0
Inverse dct in matlab
Hello! Just specify display range. Use imshow(img_r, [0 255]) instead. I've checked it. img = imread('giraffe.png'); img = r...
ungefär 5 år ago | 0
| accepted
anyway to clear variable in Matlab workspace from app?
To clear variable use 'clear' function instead, ex: clear('v') where 'v' is variable name.
ungefär 5 år ago | 0
How to solve: Error: Output argument "variable_name" (and maybe others) not assigned during call to "function_name" ?
Hello. You have a wrong values in for loop: for i = 1:1:(length(lis) - 1) The variable lis is empty because in line lis = l...
ungefär 5 år ago | 0
error: Unable to perform assignment because the left and right sides have a different number of elements.
Hello! Change pipeCost(i) to pipeCost(i,:)
ungefär 5 år ago | 0
| accepted