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

más de 5 años hace | 0

| aceptada

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

casi 6 años hace | 0

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

casi 6 años hace | 0

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

casi 6 años hace | 0

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

casi 6 años hace | 0

| aceptada

Pregunta


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

casi 6 años hace | 2 respuestas | 0

2

respuestas

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

casi 6 años hace | 0

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

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

casi 6 años hace | 0

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Cargar más