parham kianian
Followers: 0 Following: 0
Estadística
27 Preguntas
6 Respuestas
CLASIFICACIÓN
6.443
of 295.467
REPUTACIÓN
7
CONTRIBUCIONES
27 Preguntas
6 Respuestas
ACEPTACIÓN DE RESPUESTAS
40.74%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.912
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Write data from MATLAB to a text file
I found the solution. Have a look at Export data from MATLAB to text files. A video tutorial on youtube which explains in full d...
casi 4 años hace | 0
| aceptada
Pregunta
Write data from MATLAB to a text file
I need to perform some numerical analysis in MATLAB and it will result in large volume of output. To store them I need to write ...
casi 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Solving third order nonlinear boundary value problem
I have a boundary value problem in this form: where alpha is a nonzero constant and boudary conditions are: f(-1) = 0 f(0) ...
casi 4 años hace | 0 respuestas | 0
0
respuestasPregunta
rearrangement rows of matrices
Suppose: A = repmat((1:15)',1,5); Now I want to rearrange A such that it becomes matrix of size 5 by 15 in following form: B ...
alrededor de 4 años hace | 4 respuestas | 0
4
respuestasHow to load data from and .txt file?
I think it is much easier to use textread function. Following link describe in full detail how to use this function to import da...
alrededor de 4 años hace | 0
How to import data from .txt file?
I think it is much easier to use textread function. Following link describe in full detail how to use this function to import da...
alrededor de 4 años hace | 0
Pregunta
difficulty to use "sin" function
Consider following: T = 0.02; %period (sec) w = 2 * pi / T; %w = 314.1593, angqular freq...
más de 4 años hace | 2 respuestas | 0
2
respuestasHow to speedup very long expressions calculations?
To enhance the code you need to create a matrix and assign each variable to an array of matrix. For example variables gm0 to gm6...
más de 4 años hace | 0
How to pick random entries from the columns of a matrix such that their sum is equal to a already specified number?
I suppose you want to perform this on each column of matrix A seperately. Try this: A=[ 0.8147 0.9134; 0.9058 0.6324; 0....
más de 4 años hace | 0
Pregunta
MATLAB edition for Linux
Is there any matlab edition which can be installed on Linux? If yes, Is there any difference between performance of same matlab...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How can I solve the following integral equation
How can I solve the following integral equation in MATLAB numerically: where:
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
numerical integration in matlab
Suppose A is a column vector whose arrays are acceleration of a moving object and each array has been sampled every 0.01 sec. I...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to write cell array to excel file
I have a cell array whose elements have different sizes. How can I write it to an excel file? For example: a = rand(10,1); b ...
más de 4 años hace | 3 respuestas | 0
3
respuestasPregunta
how to use function "find" over matrices
Suppose x = rand(1e5,1e5); I want to find the lowest number in each column of x without using for loop. Is it possible?
más de 4 años hace | 2 respuestas | 0
2
respuestasPregunta
dsp.ZeroCrossingDetector: a confusing error
I am trying to employ dsp.ZeroCrossingDetector to count number of zero crossings of a signal. Consider the following: x = 0 : p...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
improvement of code performance
I have to use "emd" function for 500 signals and 100 times for each of them. As a result I developed a code like below: for ii ...
más de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
A 2D plot with different colors for each point
Suppose time is a column vector of length Lt, freq and amp are matrces of size Lt * n. I want to plot a each column of freq agai...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to add a 2D line to a surf plot
The following figure shows the x-y view of a surf plot. How can I add a 2D line to this type of plots. For example I have added ...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Problem in using asin function
Consider the followingj t = 0 : 0.02 : 10; nu = (t-5).^2 + 2; omega = 2*pi*nu;%as a polynomial of degree 2 f = sin(omega); ...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
continuous wavelet transform for a specified frequency range
Consider column vector h as a one dimensional signal with length Lh. I want to evaluate the continuous wavelet transform of sig...
más de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
Built in function for S-transform
Does MATLAB has any built in function for S-transform?
más de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
spectrogram of matrix in MATLAB
I hvae a matrix F whose arrays are positive numbers with the size of 8000 * 1000. I want to plot a spectrogram for F such that...
más de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
Negative instantanous frequency values in outputs of hht function
I am using hht function of MATLAB to evaluate instantanous frequency of a signal sig (a column vector of real numbers) using the...
más de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
Non-stationary signal decomposition
suppose f(t) is a non-stationary signal which can be expressed as follow: f(t) = A1(t)*sin(w1*t) + A2*sin(w2*t) + ... + An(t)s...
casi 5 años hace | 0 respuestas | 0
0
respuestasPregunta
convolution of two function
I have two functions as below: t = 0 : pi/180 : pi; f = exp(-t/3) .* (sin(2*t) + 2*sin(4*t) + 0.4*sin(2*t).*sin(40*t)); h = 1...
casi 5 años hace | 2 respuestas | 0
2
respuestasPregunta
selection of n disticnt vector
I have a vector A like A = 1 : 10 I want to make two distinc vector of length 3 such thta no array be in common between these ...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
How to sum columns of a matrix in MATLAB in specified number of columns?
I have a matrix A of size 2500*500. I want to sum each 10 columns and get the result as a matrix B of size 2500*50. that is, the...
casi 5 años hace | 2 respuestas | 0
2
respuestasPregunta
images in MATLAB help
Dear Frieds, I am using MATLAB R2018a on windows 10 operting system. But,whenever I search somthing in MATLAB help, the images ...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
Over-determined system
Dear Friends, I want to solve an over-determined system in the form of max(abs(A*x)) = B; size(A) = n by m size(x) = m by 1 ...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
Over-determined system of equations
Dear friends, I need to solve a system of over-determined equations as follow: max(abs(A11*x1 + A12*x2 + ... + A1m*xm)) = B1 ...
alrededor de 5 años hace | 0 respuestas | 0