Community Profile

photo

ahmed nebli


Last seen: 3 meses hace Con actividad desde 2018

Followers: 0   Following: 0

Contacto

Estadísticas

All
  • 3 Month Streak
  • Revival Level 1
  • Solver
  • Knowledgeable Level 2
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
Need help with storing live data from sensors into array
what you need to do is create a vector/matri without defining its size first (e.g.: A=[]; ) then use the command vertcat. see h...

más de 5 años hace | 0

Respondida
Best sorting algorithm for large array
I suggest you just use the command sort, see this link: https://www.mathworks.com/help/matlab/ref/sort.html

más de 5 años hace | 0

Respondida
importdata not reading date and time columns
i suggest you use the command "readtable" , see this link https://www.mathworks.com/help/matlab/ref/readtable.html

más de 5 años hace | 0

| aceptada

Respondida
Remove repeat values in a text file
i suggest you need to write an if condition on the minute vector exemple : if minute(n-1) == minute(n) then you delete the row n...

más de 5 años hace | 0

Respondida
Plotting "live" data inside while loop?
i suggest you try using the function set like in the link bellow https://www.mathworks.com/help/matlab/ref/set.html

más de 5 años hace | 0

Respondida
How to split vector to seqences
u can use something like that: for i=1:8:24 var = x[i,1]; % here you need to do what store var in someplace else in order n...

más de 5 años hace | 0

Respondida
To create zeros according to the length
I don't think you can put numérical zeros ( 00000 will be 0 if so), therefore you need to write these zeros as a string. i sug...

más de 5 años hace | 1

| aceptada

Respondida
Merge Matrices (365 matrix to 1)
i suggest you try using the fuction cat to create a multidimentional array like in this exemple https://www.mathworks.com/help/m...

más de 5 años hace | 0

| aceptada

Respondida
I have a gps file to read, Can anyone help me with a code to read from txt?
You need to use the function fscanf but before that you need to open the file, i suggest you follow the exemple in this link htt...

más de 5 años hace | 0

Respondida
How do I plot this on MATLAB
you can run it in a for loop (each time incrementing the value of t) , store the values of v in a vector and plot the vector. ch...

más de 5 años hace | 0

Respondida
Removing NAN values from the table and deleting it.
use this : (isnan(X)) = [] % X is the table

más de 5 años hace | 1

Respondida
how do I Load multiple csv files to collate data???
try something like that i could work num_files = 5; for i = 1 : num_files lat = ncread(sprintf('rawdata0', i), 'lat'); ...

más de 5 años hace | 0

Respondida
how to do 5 fold cross-validation for regression problem?
u have to use cvpartition like this exapmple kf=5; c = cvpartition(size(data.label,1),'KFold',kf); u can find more infor...

más de 5 años hace | 0

Respondida
How to compare each four rows by each other?
i prpose this algorithm: u define a variable m=4, and n=1, n is the number of the row, each time u search for your diffrences b...

más de 5 años hace | 0

Respondida
How to find the best ratio of producers in an energy system
i think u may make a 3 nested loops in which each time you fix two variables and vary the 3 rd variable and each time u store th...

más de 5 años hace | 0

Respondida
How can i resolve this error?
u need to go back to wiener2 function and see how much variable u need, i think you forgot a variable

más de 5 años hace | 0

| aceptada

Respondida
Importing a CSV with numbers and strings and blank space
u need to save the csv file as xls file and then use the function xlsread, it should work , use something like this: xlsread('...

más de 5 años hace | 0

Respondida
Hi. I want the plot with a marker symbol. I want to plot like this figure symbol(marker by red pen).
u need to use lineSpec this link may help you https://www.mathworks.com/help/matlab/ref/linespec.html

más de 5 años hace | 0

Respondida
editing large text file
this is how is suggest you can do : -import your file/-use a for loop to search for 'H' and after it a 'j' and after it a 'Y' / ...

más de 5 años hace | 0

Respondida
Combine variables in workspace into one table?
is this link helpful ? <https://www.mathworks.com/help/stats/create-a-dataset-from-workspace-variables.html>

más de 5 años hace | 0

| aceptada

Respondida
How to calculate mean frequency for mat signal
u can just import the frequencies, store all the frequencies in an array and then use the function mean like bellow https://...

más de 5 años hace | 0

Respondida
Mexing problem (gcc compiler version 4.9.x needed)
can u update the gcc, or try to find anothor tool for mexing files

más de 5 años hace | 0

Respondida
error: Too many output arguments
when writing the for loop it dosen't end with a ; and next the second for loop need to be under the first for loop and decaled ...

más de 5 años hace | 0

Resuelto


What is Sum Of all elements of Matrix
Given the matrix x, return the sum of all elements of matrix. Example: Input x = [ 1 2 0 0 0 0 6 9 3 3 ] ...

más de 5 años hace

Resuelto


Compute a dot product of two vectors x and y
x and y are input vectors, d is a number and contains their dot product

más de 5 años hace

Resuelto


Square a Number
Given an input x, return y, which is equal to the square of x.

más de 5 años hace

Resuelto


Test Problem; Create a 5x5 array containing all ones
This is a test for learning the process of creating a Cody problem. The goal of this test problem will be to create an array,...

más de 5 años hace

Resuelto


Is my wife right?
Regardless of input, output the string 'yes'.

más de 5 años hace

Respondida
SOFTWARE INSTALLION IN A NEW COMPUTER
if u still have the licence jey there is no need to buy it again

más de 5 años hace | 0

Respondida
Import grid data and surface fit
1- u need to use the function xlsread , see this link : https://www.mathworks.com/help/matlab/ref/xlsread.html

más de 5 años hace | 0

Cargar más