Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

Solved


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

12 years ago

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

12 years ago | 0 answers | 0

0

answers

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

12 years ago | 0

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

12 years ago | 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...

12 years ago | 1 answer | 0

1

answer

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

13 years ago | 0 answers | 0

0

answers

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

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 0

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

13 years ago | 0

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

14 years ago | 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 = ...

14 years ago | 1 answer | 1

1

answer

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

15 years ago | 0