A résolu


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

environ 12 ans il y a

A résolu


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 ...

environ 12 ans il y a

A résolu


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

environ 12 ans il y a

A résolu


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

environ 12 ans il y a

A résolu


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...

environ 12 ans il y a

A résolu


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 ...

environ 12 ans il y a

Question


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...

environ 12 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
how to combine time series in matlab
[ACC.Time ACC.Data Gyr.Time Gyr.Data] should work

environ 12 ans il y a | 0

Réponse apportée
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.

environ 12 ans il y a | 0

Question


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...

plus de 12 ans il y a | 1 réponse | 0

1

réponse

Question


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)...

environ 13 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
need function to save my data
Use save function to store variables. Help save Enjoy !!

plus de 13 ans il y a | 0

Réponse apportée
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 ...

plus de 13 ans il y a | 0

Réponse apportée
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...

plus de 13 ans il y a | 0

Réponse apportée
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...

plus de 13 ans il y a | 0

Réponse apportée
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.

plus de 13 ans il y a | 0

Réponse apportée
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....

presque 14 ans il y a | 0

Question


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 = ...

presque 14 ans il y a | 1 réponse | 1

1

réponse

Réponse apportée
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...

presque 15 ans il y a | 0