photo

Pawel Jastrzebski


Mahle Engine Systems Ltd

Last seen: plus de 4 ans il y a Actif depuis 2017

Followers: 0   Following: 0

Message

Project Leader at Product Testing department.

Mahle UK R&D Center for automotive engine plain bearings.

Statistiques

All
MATLAB Answers

5 Questions
82 Réponses

Cody

0 Problèmes
49 Solutions

RANG
417
of 297 695

RÉPUTATION
190

CONTRIBUTIONS
5 Questions
82 Réponses

ACCEPTATION DE VOS RÉPONSES
100.0%

VOTES REÇUS
26

RANG
 of 20 466

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
10 614
of 159 380

CONTRIBUTIONS
0 Problèmes
49 Solutions

SCORE
520

NOMBRE DE BADGES
3

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Review
  • Thankful Level 3
  • 6 Month Streak
  • Knowledgeable Level 4
  • Promoter
  • Commenter
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
How to properly apply cellfun in this case - text spliting
<https://uk.mathworks.com/matlabcentral/profile/authors/3073010-rik-wisselink Rik Wisselink>, <https://uk.mathworks.com/matlabce...

plus de 6 ans il y a | 0

Question


How to properly apply cellfun in this case - text spliting
I've got a table like this and my task is to separate the parameter name from a value: t = 10×1 table ...

plus de 6 ans il y a | 3 réponses | 0

3

réponses

Réponse apportée
Error using figure: First argument must be a figure object or a positive Integer
The doc says the input argument must be of double type: <</matlabcentral/answers/uploaded_files/128021/Capture.PNG>>

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How do I plot a multivariate distribution?
Consider the following example: NoOfPoints = 1000; % Generate 'x' and 'y' x = rand(NoOfPoints,1); y ...

plus de 6 ans il y a | 0

| A accepté

Question


How to use 'setvartype' to get the variable as 'datetime' formatted as: yyyy-MM-dd
I've got a spreadsheet which gets imported into Matlab via *readtable()*. Prior to importing I use *detectImportOptions()* an...

plus de 6 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
How to generate a sine signal in which initially frequency increases linearly, then remains constant for some time and again decreases linearly.
Would it look like this: <</matlabcentral/answers/uploaded_files/126310/untitled.jpg>> % y = sine(2*pi*f*t) t...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Plotting multiple trajectories on map
This is roughly how I would go about this problem [code untested]: % Get all the file names in the folder filename = dir...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Why is the correlation matrix much larger than the original matrix?
Have you checked the documentation for the corrcoef function? It explains exactly how the results are obtained: * <https://uk...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Plotting very small values using bar command
If you have a mix of relatively high and low values, you might want to consider using the logarithmic scale for the y-axis, i.e....

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to apply function to certain files in directory
Just get the function to work on the selected files in the folder to begin with: i.e. fileNames = dir('*.raw'); % ...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to remove consecutive duplicates ?
Consider the following example: ConsecDuplic = [1 2 2 3 4 5 5 5 6 7 8 9 9] % Logical vector: % check if next val...

plus de 6 ans il y a | 2

Réponse apportée
How can I recognize an empty row in the middle of an Excel file?
Consider the following code: % STEP 1: LOAD DATA % load excel file to a table t = readtable('BF1.xlsx'); % thi...

plus de 6 ans il y a | 0

Réponse apportée
I need to put data from columns in different cells into one vector
Consider the following example: % 1. Create fake data (you'll use the real data) % create empty cell 1x20 c = cel...

plus de 6 ans il y a | 0

Réponse apportée
I am getting Unbalanced or unexpected parenthesis or bracket?
*Line 1:* get rid of the comma: if PlotVI_Module *Line 15 and 25:* change round brackets to square ones and you had a on...

presque 7 ans il y a | 1

Réponse apportée
how to add numbers and labels to scatterplot bubbles?
There's a function called: * <https://uk.mathworks.com/help/matlab/ref/text.html?s_tid=doc_ta Text> that is used for label...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
How do I change axes orientation to a desired one
See documentation for: * <https://uk.mathworks.com/help/matlab/ref/view.html?searchHighlight=view&s_tid=doc_srchtitle view> ...

presque 7 ans il y a | 0

Réponse apportée
Cut random 30secs of audio from an audio recording .wav
This code will allow you to import and export all of the audio files in your current folder: % get file names in the ...

presque 7 ans il y a | 0

Réponse apportée
How to extract information from the filename?
This will get you the structure of all of the text files in your current folder: x = dir('*.txt') % structure In m...

presque 7 ans il y a | 0

Réponse apportée
How to find vectors that are multiple of other vectors inside a matrix
I think this will get you going. This code will help you identify which 'NextRow' is a multiplier of 'previousRow': % DATA ...

presque 7 ans il y a | 0

Réponse apportée
How do i plot?
Is this what you meant? dt = 0.0001; t = 0:dt:0.02; y = (5+cos(20*pi*t)).*cos(2*pi*100*t); figure; plot(...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
How to plot vertical lines for reference using vline?
I've moved my comment to the answer so the question can be closed. I've also tried to copy your example to show you what I think...

presque 7 ans il y a | 0

Réponse apportée
Covariance calculation like excel formula
Given the code: A = randi([18 22], 20,1) B = randi([15 25], 20,1) C = cov(A,B) This is the outcome that you'll...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
How to add an interval to a number?
This example should have the answers to your problems: % Values that can be changed in the code: % d, Xu, Yu % or...

presque 7 ans il y a | 1

Réponse apportée
2D color or surface plot based on 3 vectors of data
How about this: % interpolation data % as in: % https://uk.mathworks.com/help/matlab/ref/scatteredinterpolant.html?se...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
2D color or surface plot based on 3 vectors of data
In order to be able to use contour plot, your Z data need to be of X*Y size. What you can do is the following: % C is a ma...

presque 7 ans il y a | 0

Réponse apportée
how compute the pixel sum for image?
# Use <https://uk.mathworks.com/help/matlab/ref/imread.html#btnczv9-1-A imread - output> to load the image into Matlab and store...

presque 7 ans il y a | 0

Réponse apportée
Getting corresponding y values from moving average graph when having x values
Consider the following example: % RANDOM DATA startDate = datetime(2018,01,01); endDate = datetime(2018,04,01); ...

presque 7 ans il y a | 1

Réponse apportée
To label same X axis twice
You can certainly add minor ticks and show them on the grid but I'm not sure if there's an easy way to label them. In other word...

presque 7 ans il y a | 0

Réponse apportée
Long-horizon predictive regressions
The R value calculation is available in Matlab: * <https://uk.mathworks.com/help/matlab/ref/corrcoef.html R coefficient> As ...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
how to save 120 figures in a folder defined by user and later retrieve it?
When you say 120-off figures: * Are these matlab figures *.fig*? Also, see the code below that was used to create what is ...

presque 7 ans il y a | 0

Charger plus