Community Profile

photo

Vilém Frynta


CTU FBME

Aktiv seit 2022

bme

Programming Languages:
MATLAB
Spoken Languages:
English
Professional Interests:
Biomedical Engineering

Statistics

All
  • Knowledgeable Level 4
  • Solver
  • 3 Month Streak
  • Thankful Level 2
  • First Answer

Abzeichen anzeigen

Content Feed

Anzeigen nach

Beantwortet
How to combine two tables using sorted common variable?
hi, i will try. it definitely can be more automated, i made it semi-automated, but it works! hope i helped! well, i tried. Ste...

6 Tage vor | 0

Beantwortet
Somebody help me on how to solve the question i have asked just below the file below
hello, quite bold of you to straight up post screenshot of your homework assigment. while your homework seems to be simple, we...

7 Tage vor | 0

| akzeptiert

Beantwortet
How to average a dense set of data using desired resolution
hey, what you could do is as follows. to simplify this, let's assume that the length of the data is 1000. divide your data, on...

9 Tage vor | 1

| akzeptiert

Beantwortet
call one code as a function in another code
hey, if you want to use your script as a function, you need few things. it seems like you are not familiar with creating funct...

9 Tage vor | 1

Beantwortet
Excel Data import based on title cell.
After you read the table, you could simply search for the consistent names in your row. Then, you could specify which columns yo...

11 Tage vor | 0

| akzeptiert

Beantwortet
How to applly band passe filter for ecg signal on matlabe
Find the filter you want to apply on ECG signal and find it's corresponding function in Matlab. In the documentation, use examp...

12 Tage vor | 0

Beantwortet
Dynamic array variables problems
You really should not do this. It's bit tricky to do and.. it will strike back later. Better solution would be to create a stru...

13 Tage vor | 0

Beantwortet
How to obtain vector of specific values in MATLAB
Hello, this looks like homework. I'd like to give you a little bit of a direction, but then you need to try by yourselves. Bec...

15 Tage vor | 0

| akzeptiert

Beantwortet
Is it possible to share a variable from one MATLAB instance to a different MATLAB instance
Easiest solution would be to save your variables through workspace or via ‘save’ command. Then, in your script, include loading ...

15 Tage vor | 0

Beantwortet
convert char to table or cell
Something like this should work. It would be easier to work with it you attached the file so we can work with it. Hope I helped...

15 Tage vor | 0

| akzeptiert

Beantwortet
Export nested cell array to excel
You could just try to avoid using the cells, and just create one big matrix (array) with NaNs and then fill in your data. Howeve...

15 Tage vor | 0

Beantwortet
multiple 1x1 cell array to struct
After your loop ends, you can simply assign all the numbers into a column of a struct. It would be much faster than importing in...

15 Tage vor | 1

Frage


Create plot with shaded standard deviation, but ...
Hello, I have tried searching on the internet about this issue, but I haven't found what I needed, so I'm here. I am trying to...

18 Tage vor | 1 Antwort | 0

1

Antwort

Beantwortet
How to mark NaN values on the plot?
Use isnan() on the original vector. This will give you logical vector, which tells you where the NaNs are. You can use this inde...

20 Tage vor | 1

| akzeptiert

Beantwortet
Plot lines appear fuzzy
well, are your data perfectly linear? if these are your data, Matlab will interpret them in the way they are, which may be "fuzz...

25 Tage vor | 0

Frage


Intersection of two tables
Hi, I'm trying to intersect two tables. They share same column with strings, and I want strings that are in both of these tabl...

etwa ein Monat vor | 2 Antworten | 0

2

Antworten

Beantwortet
Output variables of different Class to csv or xls file.
Have you tried using writematrix()? Works usually the best.

etwa 2 Monate vor | 0

| akzeptiert

Beantwortet
User date input in csvread filename
Hello, hope this helps. input_date = input("Choose date in YYYY-MM-DD format.","s") % save date as string filename = "ArTP...

etwa 2 Monate vor | 1

| akzeptiert

Beantwortet
How do I find the white pixel in the row/column
Hope this answers your question. img = imread("pic1.jpg"); % loading your picture img = rgb2gray(img); % convert to b...

etwa 2 Monate vor | 0

Beantwortet
How to calculate the difference between different values in a table?
% loading data and separating useful data from useless data load Foveal.mat T = ans; % your table T_1002 = T(matches(T.messag...

etwa 2 Monate vor | 1

| akzeptiert

Beantwortet
Choose manually 1 out of 4 subplots which looks "best"
I'm sure there are more options and ways to do it. My idea is that at the end of the script, you would use input function. In c...

etwa 2 Monate vor | 0

Beantwortet
How to find the number of groups in another group?
Hello, if every group always starts with number 1, you can try find their positions. It would look like so: idx = find(matri...

etwa 2 Monate vor | 0

Beantwortet
How to change a single word in user interface with the input command?
not sure if I understand your idea, but you could try doing this: prompt = ['does AN fibre',fibres_without_BF{i},'look ok?']; %...

etwa 2 Monate vor | 0

| akzeptiert

Beantwortet
matrix addition according to position vector
This looks like homework. It seems like you know what kind of functions you should work with. I'd recommend to study the docume...

etwa 2 Monate vor | 0

Beantwortet
import data from csv and plot it
I looked at your data and it looks like your decimal numbers are separated by a decimal "comma" (,), which can cause problems be...

etwa 2 Monate vor | 0

Gelöst


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:...

etwa 2 Monate vor

Beantwortet
i'm using matlab mobile to collect imu data in vehicle from my iphone i needed to know how to adjust the axis ?
When you go into "Sensors" in Matlab Mobile, you can see variables measured by your mobile sensors in real-time. You can simply ...

etwa 2 Monate vor | 0

| akzeptiert

Beantwortet
How to sort rows of a 2D array based on another array
Zdravím kolego, // Hello, I have tried something. I can't say it's "cleaner solution", but it's without for loop. You basically...

etwa 2 Monate vor | 0

Beantwortet
I don't know how to make and algorithm to find BMI?
This looks like homework. Try creating a function. Inputs will be height and weight, and output will be the BMI. Some useful l...

etwa 2 Monate vor | 3

Beantwortet
Change values in vectors
If you want to apply it to this vector, it's not complicated. But if you wanted to apply it to a more complex vector where the n...

2 Monate vor | 0

Mehr laden