photo

Antonio Ciociola


Last seen: alrededor de 1 año hace Con actividad desde 2020

Followers: 0   Following: 0

Estadística

All
MATLAB Answers

1 Pregunta
12 Respuestas

Cody

0 Problemas
10 Soluciones

CLASIFICACIÓN
2.380
of 300.302

REPUTACIÓN
26

CONTRIBUCIONES
1 Pregunta
12 Respuestas

ACEPTACIÓN DE RESPUESTAS
100.0%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.911

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
38.287
of 168.040

CONTRIBUCIONES
0 Problemas
10 Soluciones

PUNTUACIÓN
110

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 1
  • Knowledgeable Level 2
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


Random Point from meshgrid
Hi everybody, I've a simple problem. I've to pick a certain number "N" of point from a meshgrid. The constraints of the proble...

casi 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
Plotting Square wave from pressure signal
This can be done transforming your signal into an arry of logic values: sig_bool = (signal>a & signal<=d);

alrededor de 5 años hace | 0

Respondida
How can I replace a value that comes after a specific string in a text file?
Use textscan: filename = 'nameofyourfile.txt'; fid = fopen(filename,'r'); [A] = textscan(fid,'%s %f') Then you can rewrite y...

alrededor de 5 años hace | 0

| aceptada

Respondida
Am I wrong? need help with a question
Your question might contain some error, I believe.. The correct formula should be: And the Volume can be calculated in this...

alrededor de 5 años hace | 0

Respondida
Need to conduct analysis across four .mat files at once - how do I load multiple .mat files?
The problem seems to be related to this instruction: s = [1 4]; But then you're loading the mat files in this way: s(i) = lo...

alrededor de 5 años hace | 0

Respondida
my code doesn't get into my If statement
The problem seems to be here: counter=sc-4; if counter>1 && counter<sc-4 If you set "counter" to "sc-4" the following cond...

alrededor de 5 años hace | 0

| aceptada

Resuelto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

alrededor de 5 años hace

Resuelto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

alrededor de 5 años hace

Resuelto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

alrededor de 5 años hace

Resuelto


Return area of square
Side of square=input=a Area=output=b

alrededor de 5 años hace

Resuelto


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

alrededor de 5 años hace

Resuelto


Add two numbers
Given a and b, return the sum a+b in c.

alrededor de 5 años hace

Respondida
Why I cannot "set" what I got with "get"?
Try this: set(c,{'String'},zz); For more information take a look to "set" reference page: Set Help

alrededor de 5 años hace | 0

| aceptada

Respondida
How use filter from filter designer
y = filter(Hd,x); x is the signal that you want to filter.

alrededor de 5 años hace | 1

| aceptada

Resuelto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

alrededor de 5 años hace

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

alrededor de 5 años hace

Resuelto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

alrededor de 5 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

alrededor de 5 años hace

Respondida
Problem with FFT amplitude plot
It's hard to understand the problem without data and code. The error that you get seems related to the amplitude of the spectr...

alrededor de 5 años hace | 0

Respondida
Issue with data imputation, (inserting date time value into an array of dates).
The error that you get it's caused by the horzcat function. Your datetime vector it's a row vector, therefore you have to use v...

alrededor de 5 años hace | 0

Respondida
how do i convert RGB image to HSV and then generate histogram of that hsv image?
Maybe this could help: https://www.mathworks.com/matlabcentral/answers/273563-how-to-draw-histogram-of-hsv-image

alrededor de 5 años hace | 0

| aceptada

Respondida
Sampling signal in Time domain
It seems that your data has been taken by sampling a sinusoid using a sampling frequency that is only two time the frequency of ...

alrededor de 5 años hace | 0

Respondida
Calculating daily average curve from weekly data
If i don't get wrong, it seems that you want to perform this operation: %% Mean along 10 columns g1m = mean(g1,2); %% Resha...

alrededor de 5 años hace | 0

| aceptada