Statistics
RANK
816
of 258,114
REPUTATION
70
CONTRIBUTIONS
0 Questions
25 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
7
RANK
4,308 of 17,786
REPUTATION
292
AVERAGE RATING
4.90
CONTRIBUTIONS
4 Files
DOWNLOADS
123
ALL TIME DOWNLOADS
1962
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Submitted
zipToolsPy
provides basic tools to read content from zip files
11 days ago | 4 downloads |

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...
1 month ago | 0
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 ...
2 months ago | 0
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(...
2 months ago | 1
| accepted
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...
3 months ago | 0
| accepted
Submitted
PyColormap4Matlab
Simple Matlab and python script that import colormaps from matplotlib into Matlab.
3 months ago | 116 downloads |

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...
4 months ago | 0
| accepted
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...
5 months ago | 0
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...
7 months ago | 1
| accepted
How to recenter spatial data?
hi, maybe I didn't get it, but why not just add 180? lonW = lon + 180;
7 months ago | 0
| accepted
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 ...
8 months ago | 0
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...
8 months ago | 0
| accepted
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
8 months ago | 0
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...
8 months ago | 0
| accepted
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...
8 months ago | 1
| accepted
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...
9 months ago | 0
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...
9 months ago | 0
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...
9 months ago | 1
| accepted
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
9 months ago | 1
| accepted
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 ...
9 months ago | 1
| accepted
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...
10 months ago | 0
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...
10 months ago | 0
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...
10 months ago | 0
| accepted
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...
10 months ago | 1
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...
10 months ago | 0
| accepted
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...
10 months ago | 0
Submitted
uniqueCells
Implementation of unique for ND cell arrays of mixed type. Avoids num2str and provides switches for unique rows and to treat NaN...
4 years ago | 1 download |
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}; ...
4 years ago | 0
Solved
5th Time's a Charm
Write a function that will return the input value. However, your function must fail the first four times, only functioning prope...
4 years ago
Solved
"Cody" * 5 == "CodyCodyCodyCodyCody"
*Alice*: What? *"Cody" * 5 == "CodyCodyCodyCodyCody"*? You've gotta be kidding me! *Bob*: No, I am serious! Python supports...
4 years ago