adeq123
Vehicle Simulation Engineer in automotive industry
Statistics
RANK
3.064
of 257.699
REPUTATION
12
CONTRIBUTIONS
1 Question
5 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 17.760
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 109.950
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
Content Feed
Count smaller than 15 cells in the table coulumns
The easiest way would be to just scan the table with for/while loop and increment the number of cells when the if condition is m...
mehr als 2 Jahre ago | 0
| accepted
Matrix dimensions must agree
The length of the vectors mentioned in error does not match. You need trim the longer one to the size of shorter one.
mehr als 2 Jahre ago | 0
Question
Smoothing jumps when using unwrap()
Hello, I need to use atan() function in my code. That results into zig-zag kind of type result when plotting. Therefore I used ...
mehr als 2 Jahre ago | 1 answer | 0
1
answerAdding and subtracting values inside tables
Hi, You can just use mean(). Like that: clc; clear all; A = [2.189091 2.071748 1.663721 1.579909 1.542135 1.118777]; B = [-...
mehr als 2 Jahre ago | 0
| accepted
multiple loop and produce infinite loop
This one works for me: G = 100:1:1000; k = 4; j = 1; i = 1 while j <= k for n = i:40 if G(i,11) =...
mehr als 2 Jahre ago | 0
Problem with plot function
Hi, Works for me. Probably you clear your workspace before running this part of the code. Therefore the x is not found. x = ...
mehr als 2 Jahre ago | 0
| accepted