답변 있음
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...

거의 12년 전 | 0

답변 있음
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...

거의 12년 전 | 0

| 수락됨

답변 있음
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...

거의 12년 전 | 3

문제를 풀었습니다


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

거의 12년 전

문제를 풀었습니다


Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...

거의 12년 전

답변 있음
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...

거의 12년 전 | 0

답변 있음
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)...

거의 12년 전 | 1

답변 있음
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...

거의 12년 전 | 0

답변 있음
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...

거의 12년 전 | 0

| 수락됨

답변 있음
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...

거의 12년 전 | 0

| 수락됨

답변 있음
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...

거의 12년 전 | 4

| 수락됨

답변 있음
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...

거의 12년 전 | 0

답변 있음
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...

거의 12년 전 | 0

| 수락됨

답변 있음
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...

거의 12년 전 | 2

답변 있음
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...

거의 12년 전 | 0

| 수락됨

답변 있음
Select data by attributes
Do you mean you have a structure: Polylines.Accuracy Polylines.SomeOtherField1 Polylines.SomeOtherField2 ... etc ...

거의 12년 전 | 1

| 수락됨

답변 있음
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 ...

거의 12년 전 | 1

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

거의 12년 전 | 1

답변 있음
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...

거의 12년 전 | 0

| 수락됨

답변 있음
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...

거의 12년 전 | 0

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

거의 12년 전 | 1

| 수락됨

답변 있음
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...

거의 12년 전 | 0

답변 있음
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...

거의 12년 전 | 0

답변 있음
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...

거의 12년 전 | 1

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

거의 12년 전 | 0

| 수락됨

문제를 풀었습니다


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

거의 12년 전

답변 있음
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 ...

거의 12년 전 | 0

| 수락됨

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

거의 12년 전 | 1

답변 있음
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...

거의 12년 전 | 0

답변 있음
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...

거의 12년 전 | 1

| 수락됨

더 보기