Frederic Rudawski
Followers: 0 Following: 0
Programming Languages:
MATLAB
Spoken Languages:
English
MATLAB
Spoken Languages:
English
Statistics
All
RANK
4,100
of 295,638
REPUTATION
12
CONTRIBUTIONS
0 Questions
2 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
11,220 of 20,255
REPUTATION
43
AVERAGE RATING
0.00
CONTRIBUTIONS
2 Files
DOWNLOADS
9
ALL TIME DOWNLOADS
239
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Answered
how to get files in a folder to a cell format
Something like that should work: folder = 'path_of_your_folder/' data = dir(folder); idx = 1; for n = 1:length(data) ...
how to get files in a folder to a cell format
Something like that should work: folder = 'path_of_your_folder/' data = dir(folder); idx = 1; for n = 1:length(data) ...
1 year ago | 1
| accepted
Answered
Convert single to double
My first guess would be: a = double(driverAppliedTorqueAtSteeringWheel) But you probably have to adjust the range yourself...
Convert single to double
My first guess would be: a = double(driverAppliedTorqueAtSteeringWheel) But you probably have to adjust the range yourself...
2 years ago | 1
| accepted