Risposto
Finding whether set of coordinates are within a bounding box set by a condition
Can't you just create an interpolant for your elevation and query the interpolant at your desired coordinates. It's then trivial...

circa 6 anni fa | 0

Risposto
selection files from part of his name
Patterns for strfind and its recommended replacement contains don't support wildcard characters such as * and ?. In any case, th...

circa 6 anni fa | 0

Risposto
Creating a random matrix with specific values?
valueset = [0, 90, 180]; desiredsize = [1, 100]; desiredmatrix = valueset(randi(numel(valueset), desiredsize))

circa 6 anni fa | 1

| accettato

Risposto
How to generate new vector and replace certain elements?
Nearly got it: meanV = mean(V); %save the mean in a new variable to avoid calculating it more than once V(V > meanV) = V(V > ...

circa 6 anni fa | 0

| accettato

Risposto
Matrix dimensions must agree error
First, do not use eval. It's not the cause for your problem here but it's a very dangerous tool which typically makes it harder ...

circa 6 anni fa | 0

Risposto
Removing Short Runs from Binary Data
The desired one-liner: %demo data A = [1 1 1 0 0 1 1 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0] %should result in % [1 1 1 1 1 1 1 1 1...

circa 6 anni fa | 1

Risposto
How to delete a .csv in my directory
delete subfolder\filename.csv %relative path to current directory But you shouldn't rely on the main directory and instead use...

circa 6 anni fa | 0

| accettato

Risposto
Grouping calculated values of for loops together
I'm not entirely clear on what you mean by boxplot nor what you're trying to achieve since none of the pieces of code you posted...

circa 6 anni fa | 1

| accettato

Risposto
Convert grayscale CMYK to RGB
I have some images of fish scales that are CMYK gray Not according to the metadata: >> imfinfo('example_img.TIF') ans = ...

circa 6 anni fa | 0

| accettato

Risposto
How do I add an Excel spreadsheet as part of my Matlab UI?
The only way you could do this is with an activex control but my understanding is that microsoft no longer offer an activex spre...

circa 6 anni fa | 0

Risposto
dec2base working differently on a matrix than on individual values
From your screenshot, it looks like you've typed: >> message_Image_R_bin at the command window and scrolled back up until the ...

circa 6 anni fa | 2

| accettato

Risposto
how to compare two text file and sort the lines of one of them with respect of another one ?
So, it will go something like this:]( %read the files. Not enough details given to give exact syntax. Something like this shoul...

circa 6 anni fa | 0

| accettato

Risposto
0×1 empty double column vector
a) If you want to generate integers between 0 and 19 use: auswahl = randi([0 19], 100, 1); %use randi to generate random integ...

circa 6 anni fa | 0

Risposto
Sharing data between callback functions
"The issue with imread is that I need to access the file that was chosen in another callback function. So I am not sure how to g...

circa 6 anni fa | 0

| accettato

Risposto
Need better resolution in my plot!
I'm a bit confused. I still have no idea which bits of code are relevant. Still can't run example.m and I'm unclear what to to d...

circa 6 anni fa | 0

| accettato

Risposto
WebRead CSV Missing Rows show in browser
If I try to download the file from your link, using a web browser, I only get a few rows. Considering that when you visit the ma...

circa 6 anni fa | 0

Risposto
I just need to draw that line inside these objects. This line should aproximate these
Maybe skeleton = bwskel(imclose(yourimage, strel('diamond', 2)))

circa 6 anni fa | 0

Risposto
Create new matrix with compine values
First, don't store your matrices in individual variables, it complicates everything. Since they're all the same size store them ...

circa 6 anni fa | 1

| accettato

Risposto
How to make a 3D plot of 41x41x41 datapoints
If you have the image processing toolbox, the easiest would be: volshow(your3Dmatrix)

circa 6 anni fa | 0

Risposto
Comparing data sets with similar trends
It depends on what you call similar. If I understood correctly, here you could transform your path in a vector of left and righ...

circa 6 anni fa | 0

Risposto
Converting cell array that contains numbers and characters to double with numbers and NaN for characters
First, use readtable instead of xlsread. It will automatically detect that the first row is a header and use that to name the va...

circa 6 anni fa | 0

Risposto
Finding which rows in table contain NaN, save those as new table
Assuming your input is a table: nantable = yourtable(isnan(yourtable{:, 5}), :) %keep all rows whose 5th column is nan

circa 6 anni fa | 1

| accettato

Risposto
Saving the selected .mat file and write it into csv
Assuming that storedStructure.data is a matrix with 3 columns, the simplest way to save to csv is with: writetable(array2table(...

circa 6 anni fa | 1

| accettato

Risposto
Matrices in a matrix.
First thing: a matrix of matrices does not exist mathematically, so what you're asking is an impossibility. In matlab, you can s...

circa 6 anni fa | 1

| accettato

Risposto
How to convert characters in a table into numbers
a) There's rarelly any need of table2cell or table2array. These are usually used by people who don't know how to index into tabl...

circa 6 anni fa | 1

| accettato

Risposto
How can i make array with strings ?
Note that strictly speaking you're not creating strings but char vectors. You may actually prefer generating strings which are e...

circa 6 anni fa | 2

| accettato

Risposto
How to save imshowpair figure using imwrite?
No, no, no, don't use print or saveas, this is possibly going to rescale your image, change the the colour depth, etc. A simple...

circa 6 anni fa | 5

Risposto
Need help to delete garbage values from a Matrix
First, as pointed out by David, your co de doesn't take into account the properties of floating point numbers. I would strongly...

circa 6 anni fa | 1

| accettato

Risposto
Get the value of a cell that is in the same row of matching cell in excel to matlab
readtable should be capable of finding the data range on its own, so use that to import your data. Then for merging, simply us...

circa 6 anni fa | 0

Risposto
Find that max and its index for data with multiple data values per index
There a many functions you can use for this (accumarray, splitapply, etc.) but with any of them you're going to have to build a ...

circa 6 anni fa | 0

| accettato

Carica altro