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

ongeveer 5 jaar 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...

ongeveer 5 jaar ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

ongeveer 5 jaar ago

Solved


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

ongeveer 5 jaar ago

Answered
replace a numerical with a string within a csv file.
Use xlsread and xlswrite Example: [~,~,raw ]= xlsread('C:\Test.csv'); raw{2,1} ='FUTAvgTradePrice'; % setting value raw(1,...

ongeveer 5 jaar ago | 0

| accepted

Answered
Please help me to position the starting and ending point of data
Use strfind Example: str = 'M0400FCFFFAF2F7D1046DFB3808A2039B02830741F8DB01A2F6EDF94DFECEF73A083DFE6D0826069EFE540659F5D5FC...

ongeveer 5 jaar ago | 0

| accepted

Answered
Please help me in positioning start and end of the data(Example is given below)
Use strfind to get the index. Example: str = 'M0400FCFFFAF2F7D1046DFB3808A2039B02830741F8DB01A2F6EDF94DFECEF73A083DFE6D08260...

ongeveer 5 jaar ago | 0

| accepted