Answered
How can I parse and write it to any document as same column but every time next row of .txt file ?
FID = fopen('Full path to the file', 'r'); % i.e. C:\...\channel.txt Counter = 1; tline = fgetl(FID); File_Data{Counter} = tl...

5 years ago | 0

| accepted

Answered
why i can't make title in figure?
title(num2str(i))

6 years ago | 0

Answered
How to find the indeces of same values within two vectors with repetitive values?
Values=ismember(B,A) % Will return true/false for each value of B found in A Ind_Values = Values .* [1:1:length(B)] % Multiply ...

6 years ago | 0

Answered
Error reading images from file
The extra backward slash should do it. folder = uigetdir('C:\Users\Mia\Documents\Project (SD)\DB1_B\');

6 years ago | 0

Answered
Monte carlo simulation simplification
lambda = [60.21, 41.58, 9.11, 8.71, 3.83, 3.74, 18.06] r = poissrnd(lambda)

6 years ago | 0

| accepted

Question


MATLAB Answers bug in typing window - "body"
Hello everyone, I am not sure if this is place to put this, but once acknowledged you can remove it. The bug happens if you p...

6 years ago | 2 answers | 0

2

answers

Answered
Intlinprog can not find feasible solution even though there is one
I am not sure if this comment will be useful at all, since I don't understand the code completely. (Not great in optimization ei...

6 years ago | 0

Solved


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

6 years ago

Solved


Square root of a number
Write a code that will output the square root of x.

6 years ago

Answered
Plot doesn't show anything
clear,clc,clf, R = 83.1446; b = 29; i = 200:10:900 for T = i + 273.15; d = (-8374 + (19.437*T) - (8.148*0.001*T.^2))*10^...

6 years ago | 0

Solved


Find MPG of Lightest Cars
The file |cars.mat| contains a table named |cars| with variables |Model|, |MPG|, |Horsepower|, |Weight|, and |Acceleration| for ...

6 years ago

Solved


Find the Best Hotels
Given three input variables: * |hotels| - a list of hotel names * |ratings| - their ratings in a city * |cutoff| - the rat...

6 years ago

Solved


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

6 years ago

Solved


Calculate BMI
Given a matrix |hw| (height and weight) with two columns, calculate BMI using these formulas: * 1 kilogram = 2.2 pounds * 1 ...

6 years ago

Solved


Solve a System of Linear Equations
*Example*: If a system of linear equations in _x&#8321_ and _x&#8322_ is: 2 _x₁_ + _x₂_ = 2 _x₁...

6 years ago

Solved


Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...

6 years ago

Solved


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

6 years ago

Solved


Plot Damped Sinusoid
Given two vectors |t| and |y|, make a plot containing a blue ( |b| ) dashed ( |--| ) line of |y| versus |t|. Mark the minimum...

6 years ago

Solved


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

6 years ago

Solved


Project Euler: Problem 6, Natural numbers, squares and sums.
The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ...

6 years ago

Solved


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

6 years ago

Solved


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

6 years ago

Solved


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

6 years ago

Solved


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

6 years ago

Solved


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

6 years ago

Solved


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

6 years ago

Solved


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

6 years ago

Solved


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

6 years ago

Solved


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

6 years ago

Solved


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

6 years ago

Load more