Beantwortet
I want to count the number of 0s in a binary sequence which occurs for n number of times, where n=1:25.
If you have the Image Processing Toolbox you can use a few functions in there: % Define sample data. A = [0 0 0 1 0 0 1 0 1 0 ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Can we automatically find the threshold from CT images having 3 different materials?
Did you try multithresh? help multithresh

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
determining the data of a repeated period from a single file.
Try conv y = 1:8 out = conv(y, [1,1]/2, 'full'); out = out(2:end-1) If you have any more questions, then attach your data an...

etwa 2 Jahre vor | 0

Beantwortet
detect the blue color
Use the Color Thresholder app to adjust thresholds. It's on the Apps tab of the tool ribbon. Tell it to use HSV color space, t...

etwa 2 Jahre vor | 0

Beantwortet
How to detect wavelength patterns using fft2?
Your hypothesis is wrong. The "wavelengths" indicated by your arrows are not high frequencies - they are low frequencies. Anyw...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
How to start figure window in matlab
Take the App Designer training: MATLAB App Designer If you have any more questions, then attach your data and code to read it ...

etwa 2 Jahre vor | 0

Beantwortet
How to set the default documentation location to "Locally Installed" at the time of installation?
Home tab Preferences Help Click Installed locally radio button

etwa 2 Jahre vor | 0

Beantwortet
Estimation of particle size in the image
Try this: % Demo by Image Analyst % Initialization steps: clc; % Clear the command window. close all; % Close all figure...

etwa 2 Jahre vor | 0

Beantwortet
Squeeze some part of a plot
There are several submissions in the File Exchange for broken y axes or axes with "gaps" in them. Search for "break y axis" ht...

etwa 2 Jahre vor | 0

Beantwortet
how can i blur the background?
You can try the foreground detector in the Computer Vision Toolbox. https://www.mathworks.com/help/vision/ref/vision.foreground...

etwa 2 Jahre vor | 0

Beantwortet
How to speed up convolution with a million data points
Use the built-in convolutions functions: conv and conv2. They are highly optimized for speed.

etwa 2 Jahre vor | 1

Beantwortet
particle size and shape analysis
See my Image Segmentation Tutorial in my File Exchange: Image Analyst's File Exchange It's a generic, general purpose demo of ...

etwa 2 Jahre vor | 0

Beantwortet
Estimation of particle size in the image
Yes, it's pretty easy. Would be better if you could also post an image with just the background in there. Can we assume that t...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
where to enter the input in fault analysis of washing machine
Take a training course on MATLAB's AppDesigner MATLAB App Designer It should show you how you can enter your input values into...

etwa 2 Jahre vor | 0

Beantwortet
How to spline 163 data points into 100 data points?
See attached demo. You can easily use new values for the descriptively-named variables in the demo to do what you want.

etwa 2 Jahre vor | 0

Beantwortet
big problem with matlab and simulink
Try the FAQ: https://matlab.fandom.com/wiki/FAQ#After_installation,_MATLAB_crashes_or_gives_an_error_message_when_I_try_to_run_...

etwa 2 Jahre vor | 0

Beantwortet
I am new to matlab and I'm trying to filter the noise out of the audio. I tried some filters but can't event get close to lessening the noise.
Did you try the Data Cleaner app on the Apps tab of the tool ribbon? Can you upload a screenshot of your noisy original data, a...

etwa 2 Jahre vor | 0

Beantwortet
The image calculation found that they are all black or all white.
img1 is an array so you need to use dot division img = (-0.18 ./ (-0.28 ./ (45.39 ./ img1 - 1)) + 1) * 5.3; And double check y...

etwa 2 Jahre vor | 0

Beantwortet
Do calculations in csv data one csv file at the time
See the FAQ for code samples to process a sequence of files: Process a sequence of files

etwa 2 Jahre vor | 0

Beantwortet
Errors in turbulent image analysis.
The reason for the error is that your image does not have as many as 840 rows and 1320 columns. Why are you even cropping the i...

etwa 2 Jahre vor | 1

Beantwortet
How to smooth the line curves in the plot?
See attached demo. Adapt as needed. % Demo to show spline interpolation. % Clean up / initialize clc; close all; clear a...

etwa 2 Jahre vor | 1

Beantwortet
calculating the velocity and distance of a rocket
Why do you need differential equations? velocity = acceleration * time and distance = (1/2) a*t^2 + v*t + d0. You only are giv...

etwa 2 Jahre vor | 0

Beantwortet
How to extract the Physical value from the Raw Signal of the CAN using MATLAB coding
I have no idea what BMS is, nor CAN. Please explain and attach your data file. Zip it up if the extension is not allowed for u...

etwa 2 Jahre vor | 0

Beantwortet
how to convert numerical dataset to image ?
If you're building your own network then you can just design it to use your existing matrix size of 2816 x 2500. No need to res...

etwa 2 Jahre vor | 1

Beantwortet
Problem 56313. Find Air Temperature from Cricket Stridulation Rate
Not sure why you have a while loop. It will enter the while loop because F=0 is less than 50 but then you add 110 to it so the ...

etwa 2 Jahre vor | 0

Beantwortet
How to segment dataset and randomly sample and append datapoints?
Try this: % Create initial full table. col1 = [3.0; 5.6; 10.2; 12.0; 14.4; 15.6]; col2 = {"08-Feb-2019 12:34:52"; "11-Feb-201...

etwa 2 Jahre vor | 0

Beantwortet
Improve my MATLAB skills
See Best way(s) to master MATLAB? - MATLAB Answers - MATLAB Central

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Modifying the search path is not supported by Matlab Compiler?
Try taking that line of code out of your program. To add files that the compilation process may not see and automatically inclu...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Saving 3D image after segmentation
Did you try imwrite or save? help imwrite

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
can image tiff convert to grayscale
image is a built-in function. Do not use it as the name of your variable. Zip up your image and attach the zip file with the p...

etwa 2 Jahre vor | 0

Mehr laden