Community Profile

photo

Konrad


Universität Freiburg

Last seen: Today Aktiv seit 2017

Followers: 0   Following: 0

Kontakt

Statistiken

All
  • Personal Best Downloads Level 3
  • GitHub Submissions Level 3
  • Knowledgeable Level 3
  • 6 Month Streak
  • Knowledgeable Level 2
  • 5-Star Galaxy Level 3
  • First Review
  • First Submission
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
I need to calculate the distance matrix between these locations in ev charging stations placement
Hi, let's say you have 10 2d coordinates of charging stations pos = rand(10,2); Then one efficient way of computing the dista...

5 Monate vor | 1

Beantwortet
Interpolating the indexes of values in a Vector
Hi, use interp1(): a = [2 4 6 8 10 12 14 16]; b = [6, 5, 4.5, 14.3]; interp1(a,1:numel(a),b,'linear') % 'linear' is also the...

7 Monate vor | 0

Beantwortet
How to save and load all the states of checkboxes and etc
Hi Ron, here is something I recently used in an App Designer GUI: The App needs a property 'config' and the following method...

mehr als ein Jahr vor | 0

| akzeptiert

Beantwortet
How to populate a new vector by extracting only certain elements from another vector?
Hi Loren, if understood your question correctly, this should do what you want: load('reticolo2D.mat'); [Xpix, Ypix] = meshgri...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to filter an entire dataset of ecg signals
Hi basically, you already described what to do: use load to import the data use designfilt to get filter parameters --- EDIT:...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
View and Commit Changes dialog is blank
Hi I had the same problem with 2020b (win10) when using 2 displays with the main matlab windows moved to the secondary displa...

etwa 2 Jahre vor | 0

Beantwortet
reading multiple text file from two different folders using nested for loop
Hi Salma It depends on what exactly you want to do with the data in the text files, but reading the file line by line seems to ...

etwa 2 Jahre vor | 0

Beantwortet
Getting camera viewing data in real time
Hi, you can link the Camera-properties of the axes: figure; ah(1) = axes; figure; ah(2) = axes; plot3(ah(1),rand(10,1),rand(...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
Randomly generate a vector containing integers. Extract items from odd positions using a single command line
Hi Dacian, indexing an expression (e.g. randi(100,10,1)(1:2:9)) is not possible in Matlab. Here is a workaround using groupsum...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to open .hdr files (paired with zipped .img files)
Hi David, hdrread is not for radiological images but for high dynamic range images. You are dealing with the nifti file format...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
find the average pixel value of matrix of images
Hi Michael, allImages{i} = ... creates a cell-array containing the images. If your images are all grayscale and of the same si...

mehr als 2 Jahre vor | 0

Beantwortet
How to call python Script in specified environment in Matlab?
Hi, please see this answer by Walter. I think pyenv() affects only python calls using the py.-prefix. But calling python via s...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
How to recenter spatial data?
hi, maybe I didn't get it, but why not just add 180? lonW = lon + 180;

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
Precision of numbers problem (I think)
Hi Phillip, yes, it has to do with precision. ismember(phys_diffs,new_data(:,2)) % ans = % 1×7 logical array % 1 0 ...

mehr als 2 Jahre vor | 0

Beantwortet
Mean and median at each interval
Hi data = readtable('Data.xlsx'); % read data data = data(~ismember(data.Volume,[0 1]),:); % exclude rows where volume=0 or vo...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
Auto update row index to match the variable length
Hi you can use b(1:numel(a),k) = a if k is scalar. Best, K

mehr als 2 Jahre vor | 0

Beantwortet
Wie kann ich einen unbekannten String in einem Array finden? | finding an unknown string in an string array
Hi Patrick wenn ich richtig verstehe möchtest Du alle strings im array finden die mit * anfangen?! Das kannst Du so machen: st...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
String to number from array
Hi Nicle you need str2double() (or str2num()), not double(). double() gives you the UTF(?) code corresponding to the input st...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
Why am I getting wrong outputs with this MATLAB code?
Hi, i've rewritten the code without all the hard-coded indices, which I couldn't make sense of and which made your code very ha...

mehr als 2 Jahre vor | 0

Beantwortet
enter a string of characters and numbers, add and return the sum of the numbers in matlab, for example: 'there are two blue birds and 4 red birds on the branch'--> return 6
Hi if you only need to handle numeric type, I'd recommend regular expressions: strng = ' 2 blue birds and 4 red birds'; res_s...

mehr als 2 Jahre vor | 0

Beantwortet
Get values of the particular line from surf plot
Hi Ramesh, the contour3() function returns the contour matrix (see help) containing x- and y-coordinates of the contour. You ca...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
Calculate mean of matrix for specific interval
Hi Pelle, you need to index your variable DEM correctly: DEM_mean2 = mean(DEM(11:110,:)); Best, Konrad

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
Animation video from data points, giving error below
Hi Muhammad, it seems that the video you are trying to create is too large to fit into memory. You can either run the code on ...

mehr als 2 Jahre vor | 1

| akzeptiert

Beantwortet
could someone please tell me why my code returns complex answers while it is about room temperature ?
Hi, One quick guess: in your equation (eqn(number_of_nodes) = ...) you are raising to the power of .24, which means you are ta...

mehr als 2 Jahre vor | 0

Beantwortet
Help reorganizing data in a table
Hi Andrew, I think unstack() is what you're looking for: T=readtable('example_sheet.xlsx'); uT = unstack(T,{'Duration' 'Ratin...

mehr als 2 Jahre vor | 0

Beantwortet
Is it possible to extract 2 separated sections from the same table?
Hi Ruth, you can create indices into rawdata for your subjects and pilots programmatically like this: filename='RES_IAS (1).xl...

mehr als 2 Jahre vor | 0

| akzeptiert

Beantwortet
3D bar graph of Z with data in X Y Z array
Hi, provided that x and y are always positive integers, this may be a good start: tab = readtable('XYZ_Data.txt'); zarray = z...

fast 3 Jahre vor | 1

Beantwortet
How do I plot points coming from a for loop without using vectors?
Hi, values on the x-axis are not equally spaced because on every interation you increase L by i, which itself is increased by 1...

fast 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to stackplot a table?
Hi Oliver, does this code produce the plot you need? load('example.mat', 'table') figure; nvar = size(table,2)-3; t = [tabl...

fast 3 Jahre vor | 0

Beantwortet
How to read files from sub folders in sorted order?
Hi, one solution would be to convert the time suffix to numeric and sort the numbers: d = dir('Time*'); n = {d.name}; ...

mehr als 5 Jahre vor | 0