Risposto
hi , I have an excel sheet of accelerometer data and want to use a high pass filter to filter the lower frequencies.
Hi Shilpa, I guess the easiest way is to type this fdatool in MATLAB command window, this opens the Filter Design and...

oltre 10 anni fa | 0

| accettato

Risposto
How to find max in a matrix (1,N,2)&& matrix (1,N,3)?
Hi Tabw, You can add those numbers and then use "max" to find their value and their index. m = matrix (1,1:10,2) + matri...

oltre 10 anni fa | 0

| accettato

Risposto
how we can represent an image in graph in matlab?
Hi Christina, Do you know that you can simply view the image in MATLAB by using imshow('c:\mypicture.jpg') If proces...

oltre 10 anni fa | 0

Risposto
find the dependence ratio
Dear Son, You can make a function if you have a series of measurements. You can compare results with a base signal, and th...

oltre 10 anni fa | 0

| accettato

Risposto
find the dependence ratio
Hi Son, I guess you want to compare between your signals to see how close the are! At least that what I understood from your ...

oltre 10 anni fa | 0

Risposto
How to get Magnitude Spectrum of a Cosine Wave
Hi Upsesh, This can be solved by properly using fft (Fast Fourier Transform) I wrote a fftplot function wich plots the mag...

oltre 10 anni fa | 0

| accettato

Risposto
How to integrate using Matlab 2012a?
Hello Micheal, First see if you can simply use sum instead of intergral. If not then chech the link below plz. <http://www...

oltre 10 anni fa | 1

| accettato

Risposto
object oder in the GUI / Tab
Hi Max, It's so simple if you've used GUIDE to create the GUI. There is a specific menu that helps you do this by some cli...

oltre 10 anni fa | 0

| accettato

Risposto
Inverse cmd giving errors
Hi Segun, So what you want to do is, finding the inverse matrix! Alright. define your matrix as such x =[2,3,5;4,1,6...

oltre 10 anni fa | 1

Risposto
Challenging Question - Finding mean of specific values of matrix and re-entering
Hey Karan, Sound very easy and typical! It's nothing but programming and defining some conditions. you need 2 for loops f...

oltre 10 anni fa | 0

Risposto
self clearing edit box
Hi Max, How about using MATLAB's default input dialog (inputdlg)? Even if you make your own, it's absolutely gonna work th...

oltre 10 anni fa | 0

| accettato

Risposto
How do I define a color?
Oh yeah, It's crystal clear now! So, for instance the color you want to pick is black and you just want to define it. I to...

oltre 10 anni fa | 0

| accettato

Risposto
How to compair between two lines in binary images?
Meshooo How about to find the mean value of the curve, specially that it's a line, and consider it as a fitted curve, just a...

oltre 10 anni fa | 0

Risposto
How to compair between two lines in binary images?
You may also want to try diff Just like before, get the line out your picture by finding its white spots. Get diff of its ...

oltre 10 anni fa | 0

Risposto
How to compair between two lines in binary images?
Hi Meshoo, I guess you can do it in different ways. What I think of, is Fourier analysis. Forget about the x axis, I wo...

oltre 10 anni fa | 0

Risposto
how ot stop Matlab figure from maximizing?
Hi Adnan, It's simple just create your figure as follow h = figure('Resize','off') or if the figure is generated use...

oltre 10 anni fa | 0

| accettato

Risposto
How to do this?
Hi Sneha, You didn't as a specific question so I can't answer specifically. Apparently you have the measurement and you kn...

oltre 10 anni fa | 0

Risposto
gca function in matlab
Hi Civs, To my knowledge whenever an object is created (figure, window, axes, function,...) a handle is associates to the obj...

oltre 10 anni fa | 2

Risposto
unexpected behavior with symbolic substitution, 0 in vector
Hi Tonkma, I think you got what you wrote :) You defined ka as a column not row (vector), since you used ";" instead of ",...

oltre 10 anni fa | 0

Risposto
how can use fmmod function for make a LFM signal
Hi Mehdi, It's always a pleasure for me to get involve telecom problems, besides, it's a good review and still a struggle for...

oltre 10 anni fa | 1

Risposto
I have bunch of signals.and I have another signal that is one of mentioned signals but with shifted and different magnitude. How can I find out which signal shifted signal with different magnitude?
Hi Vahid, Use crosscorr(f,b) or crosscor(f,b,numel(b)-1) read MATLAB documentation about crosscorr and how ...

oltre 10 anni fa | 1

| accettato

Risposto
Reading Data from more than 2000 txt files in matlab
Hi Ahmed, It's really good that the files name has an order, you can use that to write a program to automatically open a spec...

oltre 10 anni fa | 0

Risposto
how can use fmmod function for make a LFM signal
Hey Mehdi, Sorry, I guess it took me a bit more than 2 hours, I've been a bit busy. Take a look the attached file and how ...

oltre 10 anni fa | 0

Risposto
How do I resolve the Improper index matrix reference error?
Hi I guess there should not be a problem plotting a vector and column but why not try to make them both column or row at leas...

oltre 10 anni fa | 0

Risposto
how can use fmmod function for make a LFM signal
Hey Mehdi, I ran your code, couldn't understand anything really. Try this one, you may see some modulation taking place at...

oltre 10 anni fa | 1

| accettato

Risposto
how can use it for more than two features plot for multiclass svm?
Hey shah, There's no surprise you got error adding plot_x and b, because apparently plot_x is 1x30 and as you said b is 3*1 ...

oltre 10 anni fa | 0

Risposto
Trying to plot fft,,Please help
Hi Avan, I wish you had provided more information about your problem. I don't see any sign of fft in your code?! I don't r...

oltre 10 anni fa | 0

Risposto
basic question on creating a function and plotting
Hi Vaggelis, How about using anonymous function? f = @(k0,e,a) k0.*e.*a.*(a-1)./(1+e-a.*e) then you can easily evalua...

oltre 10 anni fa | 0

| accettato

Risposto
Communicate with FANUC CNC machine
Hi You can definitely do this with MATLAB. You need to have the IP address of your CNC device, if you don't know it refer ...

oltre 10 anni fa | 0

| accettato

Risposto
Plot different signals in a single plot using days as reference on the x-aixs
Hi Ramas, I guess I understood your prob. You have to calibrate the X axis according to your highest number of data points...

oltre 10 anni fa | 1

| accettato

Carica altro