photo

Grzegorz Lippe


Bosch Automotive Steering

Last seen: 1 year ago Active since 2013

Followers: 0   Following: 0

Message

Mechanical Engineer, specialiced in gearing. Professional Interests: optimization, photography

Statistics

All
MATLAB Answers

7 Questions
0 Answers

Cody

0 Problems
6 Solutions

RANK
41,230
of 299,279

REPUTATION
1

CONTRIBUTIONS
7 Questions
0 Answers

ANSWER ACCEPTANCE
42.86%

VOTES RECEIVED
1

RANK
 of 20,677

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
49,467
of 164,003

CONTRIBUTIONS
0 Problems
6 Solutions

SCORE
70

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • First Review
  • Solver

View badges

Feeds

View by

Question


How can I create one help document from Contents.m and all its linked classes, properties and methods?
I have written a package with roundabout 10 class files which I have documented quite well. Now I would like to create one sin...

1 year ago | 1 answer | 1

1

answer

Question


inputParser does not throw error
I want to check, whether an input is a string. Why does it not work? p = inputParser() ; isString = @(x) (isvector(x) | isempt...

3 years ago | 1 answer | 0

1

answer

Question


What is the correct way to update super class properties?
I have a class which serves as a data class for objects with the same pattern. In my example I will use a class Surface: % Surf...

3 years ago | 1 answer | 0

1

answer

Question


Compare numel of multiple variables
How can I compare the sizes of multiple variables easyly? %% a = [1 2 3 4] ; b = [1 2 3 4] ; c = [1 2 3 4] ; all_numel_...

3 years ago | 2 answers | 0

2

answers

Question


How to create a Legend in UIextras?
Hello, I created some small calculator/plotter, but I would like to add a legend to the plot, which does not work: Here is a w...

6 years ago | 0 answers | 0

0

answers

Question


I need help with string formatting
Hello, I need a formatted string and came up with this: colFormatWidth = [ 5 25 10 10 10 10 5 5 5 5 10 ] ...

10 years ago | 1 answer | 0

1

answer

Question


Create a matrix with same diagonal elements
Hello World, I have a vector x = [x_1 x_2 x_3] and would like to create a Matrix which looks like this: X = [...

11 years ago | 2 answers | 0

2

answers

Solved


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

12 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

12 years ago

Solved


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

12 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

12 years ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

12 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

12 years ago