Matthias Michelsburg - MATLAB Central
photo

Matthias Michelsburg


Karlsruher Institut für Technologie

Active since 2012

Followers: 0   Following: 0

Message

Statistics

All
CodyMATLAB AnswersFile ExchangeFrom 06/12 to 03/25Use left and right arrows to move selectionFrom 06/12Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 Question
0 Answers

File Exchange

1 File

Cody

0 Problems
4 Solutions

RANK
265,436
of 297,648

REPUTATION
0

CONTRIBUTIONS
1 Question
0 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
9,536 of 20,460

REPUTATION
71

AVERAGE RATING
5.00

CONTRIBUTIONS
1 File

DOWNLOADS
1

ALL TIME DOWNLOADS
616

RANK
58,785
of 159,301

CONTRIBUTIONS
0 Problems
4 Solutions

SCORE
50

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 5-Star Galaxy Level 1
  • First Submission
  • Solver

View badges

Feeds

View by

Question


Numerical precision of matrix multiplication (inconsistent results with colon indexing)
Why do the two ways of matrix multiplication lead to different results? rng(1); A = randn(100,3); B = A'*A; C = A(:,:)'*A...

11 years ago | 1 answer | 0

1

answer

Solved


Conjunctive Normal Form
In Boolean logic, a formula is in conjunctive normal form (CNF) or clausal normal form if it is a conjunction of clauses, where ...

11 years ago

Submitted


Colorize Document Bar
File names in the document bar of the editor are colorized according to the path

12 years ago | 1 download |

5.0 / 5
Thumbnail

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

13 years ago

Solved


Count from 0 to N^M in base N.
Return an array of numbers which (effectively) count from 0 to N^M-1 in base N. The result should be returned in a matrix, with ...

13 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

13 years ago