photo

Adarsh Ghimire


Last seen: mehr als 3 Jahre vor Aktiv seit 2019

Followers: 0   Following: 0

Statistik

All
MATLAB Answers

0 Fragen
2 Antworten

Cody

0 Probleme
21 Lösungen

RANG
7.830
of 300.853

REPUTATION
6

BEITRÄGE
0 Fragen
2 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
0

RANG
 of 21.094

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
20.403
of 171.319

BEITRÄGE
0 Probleme
21 Lösungen

PUNKTESTAND
270

ANZAHL DER ABZEICHEN
2

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Community Group Solver
  • Solver
  • Knowledgeable Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How to extract data from a text file and use logical if-else statement after some calculations and creating a new column in the data
data = load ('stress_data.txt'); col6 = (1/3).*(data(:,3)+data(:,4)+data(:,5));

mehr als 6 Jahre vor | 0

| akzeptiert

Gelöst


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

fast 7 Jahre vor

Gelöst


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

fast 7 Jahre vor

Gelöst


Create a vector
Create a vector from 0 to n by intervals of 2.

fast 7 Jahre vor

Gelöst


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

fast 7 Jahre vor

Gelöst


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

fast 7 Jahre vor

Gelöst


Find max
Find the maximum value of a given vector or matrix.

fast 7 Jahre vor

Gelöst


inner product of two vectors
inner product of two vectors

fast 7 Jahre vor

Gelöst


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

fast 7 Jahre vor

Gelöst


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

fast 7 Jahre vor

Gelöst


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

fast 7 Jahre vor

Gelöst


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

fast 7 Jahre vor

Gelöst


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

fast 7 Jahre vor

Gelöst


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

fast 7 Jahre vor

Gelöst


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

fast 7 Jahre vor

Gelöst


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

fast 7 Jahre vor

Gelöst


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

fast 7 Jahre vor

Gelöst


Return area of square
Side of square=input=a Area=output=b

fast 7 Jahre vor

Gelöst


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

fast 7 Jahre vor

Gelöst


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

fast 7 Jahre vor

Gelöst


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

fast 7 Jahre vor

Gelöst


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

fast 7 Jahre vor

Beantwortet
Incorrect dimensions for matrix multiplication
L = inv(phi ' * phi ) * phi' * Y; your phi matrix dimension has to transposed to multiply with y. As i went through your code,...

fast 7 Jahre vor | 0