문제를 풀었습니다


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

거의 12년 전

문제를 풀었습니다


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년 전

문제를 풀었습니다


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

거의 12년 전

문제를 풀었습니다


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

거의 12년 전

문제를 풀었습니다


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년 전

문제를 풀었습니다


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년 전

질문


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년 전 | 답변 수: 0 | 0

0

답변

답변 있음
how to combine time series in matlab
[ACC.Time ACC.Data Gyr.Time Gyr.Data] should work

거의 12년 전 | 0

답변 있음
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년 전 | 0

질문


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년 전 | 답변 수: 1 | 0

1

답변

질문


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년 전 | 답변 수: 0 | 0

0

답변

답변 있음
need function to save my data
Use save function to store variables. Help save Enjoy !!

13년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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....

13년 초과 전 | 0

질문


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

13년 초과 전 | 답변 수: 1 | 1

1

답변

답변 있음
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...

14년 초과 전 | 0