Beantwortet
Efficiently populating an array without for loops
Yeah that's searching through your data an awful lot every time you do the |==| comparisons. The way I do this kind of thing wh...

mehr als 12 Jahre vor | 0

Beantwortet
how to label the vacant space
I wouldn't use regionprops here. That just connects pixels. You can't guarantee that will have anything to do with empty parkin...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Compare two strings based on ASCII dictionary order
Yeah this is a real failing of the |strcmp| function in my opinion. That function originated in C, and would tell you whether a...

mehr als 12 Jahre vor | 3

Beantwortet
two picture pixels
You are addressing |fd(:,:,:,a)| as a 4-dimensional array, but it is declared as a 1-dimensional array. You need to make sure...

mehr als 12 Jahre vor | 0

Beantwortet
Reading Binary(?) to hex to float.
Um, you're reading one at a time? Can you not first determine the file size: fseek(fid, 0, 'eof'); fsize = ftell(fid)...

mehr als 12 Jahre vor | 1

Beantwortet
Estimation of the "pixelization" error introduced when using the digital image processing toolbox
This is just a stab in the dark, but I gather that after processing you get an image with logical (0 or 1) pixels, and you obta...

mehr als 12 Jahre vor | 0

Beantwortet
search algorithm in the volume of a cone.
Well, you need a point that defines the apex of the cone, a vector definining the cone's major axis, and the half-angle (angle b...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How to stack image files if they are of different size
When you say 'stack', are you storing each image as a 'page' in some dimension? So you might have: imageStack = nan( maxHe...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Creating .txt file with matlab
This opens the file once (overwriting if it already exists) and writes your results one line at a time. fid = fopen( 'resul...

mehr als 12 Jahre vor | 4

| akzeptiert

Beantwortet
How to read any file by using txt ?
The only difference between reading a binary file versus a text file is to translate end-of-line characters. Other than that (a...

mehr als 12 Jahre vor | 0

Beantwortet
how to read complicated CSV files into matlab?
Easiest is to read your file one line at a time, and separate your sections. If your files follow exactly the format you've lis...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
custom byte swapping of binary file
Hey Peter, do you actually know the format of your data? I was under the impression that you didn't know what the binary struct...

mehr als 12 Jahre vor | 2

Beantwortet
grouping observations with specific characteristics
You mean you want to sort by Location, then Time, then Country, then Price? Before you go MatLabbing this... Would you consi...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Select data by attributes
Do you mean you have a structure: Polylines.Accuracy Polylines.SomeOtherField1 Polylines.SomeOtherField2 ... etc ...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Connected component labeling
Is this an assignment for a course you are doing? If so, what algorithms have you discussed in lectures? Surely you would not ...

mehr als 12 Jahre vor | 1

Beantwortet
image color detection
What about purplish-greenish-gray? Where do you draw your boundary? Anyway... A simple approach here is to define all t...

mehr als 12 Jahre vor | 1

Beantwortet
How to create a regular data matrix from irregularly sampled XYZ data with different X and Y coordinates
Well, I might do this: d = [2.0000 0 0.3800; 2.0000 5.0000 0.3480; 2.0000 25.0000 0.3...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Find Angle Between Two Line
When I want to find the angle between two vectors, I take the dot product of the unit vectors: clamp = @(val, low, high) mi...

mehr als 12 Jahre vor | 0

Beantwortet
Help Sorting columns
Get the indices for sorting the last row: [~, I] = sort( data(end,:) ); And then reindex your matrix: sdata = data(...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Index for loop
To do this in a loop (not the |find| command), you are doing a few things wrong. Here is your code: i=1; for item...

mehr als 12 Jahre vor | 0

Beantwortet
I need one by the element-free Galerkin method for solving one-dimensional Burgers equation Matlab procedures, thanks a lot
There is some code here which is just waiting for a little more clarification from its author before the MatLab community can he...

mehr als 12 Jahre vor | 0

Beantwortet
non linear data fit (weighted least square)
Let's say you have your function: f = @(x,a,b) = a * x.^b; Now, you have your data set and weights: X = [...]; Y...

mehr als 12 Jahre vor | 1

Beantwortet
rolling dice problem in cody..........error in this code??
Don't use round: |randi| already returns integers.

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
subscript indices must either be real positive integers or logicals - how to change lat/lons from double to integers?
If they just need to be indices, you can use |ceil|, |floor|, |fix| or |round|. _eg_ x = fix(x) If you want to convert ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
vector sum and magnitude
Maybe this will help: function [vec, mag] = DoMyHomeworkForMe( v1, v2 ) % Your calculation goes here end

mehr als 12 Jahre vor | 1

Beantwortet
generating executable file
You must install the MCR on that system. Search your matlab installation tree for |MCRInstaller.exe| On my system it is in...

mehr als 12 Jahre vor | 0

Beantwortet
What value have a variable 'edit text' guide
No, you need to use |isempty|. if isempty(T) T = 0.001; end Note that if you use |str2double| instead, you'll ge...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Image segmentation problem, need help
That's a cool problem. I would tend towards a solution that involved filling the 'empty' region from your thresholded 3rd image...

mehr als 12 Jahre vor | 0

Beantwortet
Order cell array
There's a couple of ways to do this... I assume you want the numbers in ascending order. This works, but relies on the stabili...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
problem with rotation matrix
Your code works fine, but you're just not plotting it correctly. plot(obstacle_shape(:,1), obstacle_shape(:,2)); You m...

mehr als 12 Jahre vor | 0

| akzeptiert

Mehr laden