Resuelto


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

alrededor de 12 años hace

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]; and ...

alrededor de 12 años hace

Resuelto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

alrededor de 12 años hace

Resuelto


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

alrededor de 12 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 12 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 12 años hace

Pregunta


Modbus Communication Serial with MATLAB
Hi All, We have done serial communication of modbus with MATLAB. We are able to fatch data from modbus protocol. But, w...

alrededor de 12 años hace | 0 respuestas | 0

0

respuestas

Respondida
how to combine time series in matlab
[ACC.Time ACC.Data Gyr.Time Gyr.Data] should work

alrededor de 12 años hace | 0

Respondida
Best way to acess external config data (load mat file vs import data vs fscanf etc. )
I think, You may try *tic* and *toc* command to find out optimal solution for your case.

alrededor de 12 años hace | 0

Pregunta


3d contour plot in MATLAB
Hi, I want to plot 3D contour in MATLAB. I have three dimensions (X, Y,X) and value of each value in specific grid. Plea...

más de 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Modbus communication for CRC
Dear Sir, We want to do communication of PLC through MODBUS in MATLAB. We are going to use CRC (Cyclical Redundancy Check)...

alrededor de 13 años hace | 0 respuestas | 0

0

respuestas

Respondida
need function to save my data
Use save function to store variables. Help save Enjoy !!

más de 13 años hace | 0

Respondida
Using an empty matrix as an Index
x = [3,4]; y = find(x = 0); % returns an empty matrix i(y) = 0; It should be == instead of = y = find(x == 0); % returns an ...

más de 13 años hace | 0

Respondida
Fibonacci with Neural Network
Hi, I think you have to use different NN Network. Please understand that for the different op we have different Input. T...

más de 13 años hace | 0

Respondida
how can i sort a matrix (all rows and columns are sorted) without using any special function like "sort"?
Simple Solution A = [2 3 4 5; 6 9 1 5] A = 2 3 4 5 6 9 1 5 >> sort(min(A)) ans...

más de 13 años hace | 0

Respondida
I want Solution of my program by using matlab 2008a
Problem because There are many place missing semi column at the end of sen stance.

más de 13 años hace | 0

Respondida
need function to save my data
Just find help save and load function. If you want to save data.... Assuming that it is already available in work space....

casi 14 años hace | 0

Pregunta


Magic and Trace Function
Hi, I was amaze to see following output: >> A=[2 3; 4 5] A = 2 3 4 5 >> trace(A) ans = ...

casi 14 años hace | 1 respuesta | 1

1

respuesta

Respondida
Round value ???
Also, Please see Cell, fix and round function for the same. If you want decimal point fix, Also, You can you format function...

casi 15 años hace | 0