Andreas Dorner
Followers: 0 Following: 0
Statistics
RANK
20,041
of 295,569
REPUTATION
2
CONTRIBUTIONS
3 Questions
1 Answer
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
2
RANK
of 20,247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,105
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 convert a grid reference, e.g A6, to a 10X10 matrix row and column index, e.g 1,6 by creating your own function?
function [Row,Column]= grid_reference_converter(grid_reference) Row = double(upper(grid_reference(1)))-64; Column = str2double...
5 years ago | 0
Question
Input of linebreak into sprintf?
Hello, i want to input a linebreak ( via '\n' ) into a string. I mean something like this: a =sprintf('A%sA', '\n'); %thi...
5 years ago | 1 answer | 0
1
answerQuestion
Basic power rule ((a^b)^c = a^(b*c)) does not work
Just cracked down a large problem in my code to a strange phenomenon. A very simple power rule doesn't seem to work here. b = 5...
6 years ago | 2 answers | 2
2
answersQuestion
Speed up big matrix multiplication (Parallel Processing/GPU)
Hello there, below is the code i want to run. The rand()-calls are only for code simplicity. In my code the variables obviously...
6 years ago | 1 answer | 0