Andreas Dorner
2019년부터 활동
Followers: 0 Following: 0
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...
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년 초과 전 | 0
질문
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년 초과 전 | 답변 수: 1 | 0
1
답변질문
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년 전 | 답변 수: 2 | 2
2
답변질문
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년 전 | 답변 수: 1 | 0