Réponse apportée
I'm dealing with Speech compression using Linear Predictive Coding. When I run the code I get a few errors.
The error is clear: the file does not exist. Check the spelling and location. Perhaps add a file extension if the file has one...

plus de 2 ans il y a | 1

Réponse apportée
Read Excel and write output
What is p1, p2, and p3? You might try R = xlsread('Book1.xlsx') %% Excel sheet (Book1.xlsx) is in 'D' drive A = R(:, 1); B =...

plus de 2 ans il y a | 0

Réponse apportée
Matlab GUI to select and plot data from csv file.
Use the current figure, gcf: figPosition = get(gcf, 'Position'); Also see MAGIC - MATLAB Generic Imaging Component that has a...

plus de 2 ans il y a | 0

Réponse apportée
Mac Warning: Name is nonexistent or not a directory
Does the mac care about the direction of the slash in the path (Windows doesn't)? Try using all forward slashes. Try leaving o...

plus de 2 ans il y a | 1

Réponse apportée
xline - draw a partial line
You can use line or plot instead of xline

plus de 2 ans il y a | 0

Réponse apportée
I have basic understanding of MATLAB, how do i move forward
Best way(s) to master MATLAB? - MATLAB Answers - MATLAB Central

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
How can I remove the central pattern (near 0 hz value) correctly?
It looks like it's deleting the spectrum along the axes. If you just want the central spot, then just erase that: [rows, colum...

plus de 2 ans il y a | 0

Réponse apportée
Find brightest frame in video file
See my attached demo that runs through a video getting the mean R, G, and B, and gray scale brightness. Once you've run though ...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
PROBLEMS WITH SAVING PATHFOLDERS
I noticed that you included the drive letter in one path but not the others. Try putting the drive letter in all paths. What o...

plus de 2 ans il y a | 0

Réponse apportée
create animation from several figures
See my attached movie demos, especially movie_made_from_plot and movie_made_from_surf.m.

plus de 2 ans il y a | 1

Réponse apportée
Object depth tracking with magnetometer
Since you don't know how the Z values change, you'll have to model that. So I'd map out a 3 by 3 (or more) grid that covers the...

plus de 2 ans il y a | 0

Réponse apportée
PROBLEMS WITH SAVING PATHFOLDERS
I'd say that you don't have the folderpath on your computer folderPath = '\path\folder\test'; or else the images are not in th...

plus de 2 ans il y a | 0

Réponse apportée
How to completely extract the green pixels from this image?
Try the Color Thresholder on the Apps tab of the tool ribbon. Use HSV color space, then click the Export function button on the...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Do I have to upgrade to Matlab 2020?
I'd say sure, but upgrade to R2023b, the latest, instead of R2020a. Can't hurt. Otherwise call delete(filename) before calling...

plus de 2 ans il y a | 0

Réponse apportée
How can I deform an image to fit a shape, but keep the same pixel values?
You cannot do it without "new" pixel values being interpolated especially if you enlarge the region. For example if the source ...

plus de 2 ans il y a | 0

Réponse apportée
Handwritten number recognition app
Yes, I'm pretty sure there is a simple deep learning example using transfer learning and the NIST numerical image data set. Sea...

plus de 2 ans il y a | 0

Réponse apportée
I want to use Interpole with Zero Padding
Why are you doing anything with fft? Just use interp1 xInterp = linspace(min(n), max(n), 5 * length(n)); x_interpolated =in...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
My output text file continues to have a delimiter. How do I change this in my code?
You can go through each row of the table using fprintf to write whatever you want into a text file. Just don't write delimiters...

plus de 2 ans il y a | 1

Réponse apportée
Video and image analysis of microfluidics channel with a growing bubble. Calculate the size of the bubble.
After getting the binary image "L" you should have removed the background and then extracted the largest blob (assuming the bubb...

plus de 2 ans il y a | 0

Réponse apportée
Identify specific rectangular shape in image and measure distance
Try this. Adapt as needed. % Demo by Image Analyst clc; % Clear the command window. close all; % Close all figures (exce...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
How to find the minimum area bounding box of a region returned from regionprops
Yes it is. Did you actually try to use the bwferet function? If not, you should.

plus de 2 ans il y a | 0

Réponse apportée
I am a 3rd year ECE UG student i know the basics of this matlab language but want to from the community about how to get advanced.....
See this link: Best way(s) to master MATLAB? - MATLAB Answers - MATLAB Central

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
How can I find the red areas?
Try thresholding. See my Image Segmentation Tutorial in my File Exchange: Image Analyst's File Exchange It's a generic, gener...

plus de 2 ans il y a | 0

Réponse apportée
implement some enhancement techniques
This looks like a homework problem. If you have any questions ask your instructor or read the link below to get started: How d...

plus de 2 ans il y a | 0

Réponse apportée
license error -10
Then do exactly what it says to do in the FAQ. https://matlab.fandom.com/wiki/FAQ#After_installation,_MATLAB_crashes_or_gives_a...

plus de 2 ans il y a | 0

Réponse apportée
How can I make this code a function to extract data and use the data in another code?
Why not just save whatever data you want in a .mat file that the other code can load?

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Finding the neighbouring regions
Not too hard. Simply call bwlabel to give each region an ID. Then call bwmorph with the thicken option to dilate the regions t...

plus de 2 ans il y a | 1

Réponse apportée
How can I increase classification accuracy after feature extraction
To get better classification accuracy you can either pick better features to measure, use more training samples, or pick a bette...

plus de 2 ans il y a | 0

Réponse apportée
Is there a method to combine some functions into a single .m file?
Simply make sure the folder where tools lives is on the search path. Then testadd will find it no problem. No need to pass it ...

plus de 2 ans il y a | 1

Réponse apportée
How to extract the region coordinates in this example?
Use load to load the (x,y) coordinates from the MAT file. Then you can use poly2mask to get a mask then use the mask to get the...

plus de 2 ans il y a | 1

| A accepté

Charger plus