Statistik
0 Fragen
                        10 Antworten
RANG
10.687
                          
                          
of 300.381
                        
REPUTATION
4
                           
                        
BEITRÄGE
                          0 Fragen
                          10 Antworten
ANTWORTZUSTIMMUNG 
                            0.00%
                        
ERHALTENE STIMMEN
2
RANG
 of 20.941
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS 
0
ALL TIME DOWNLOADS
0
RANG
of 168.477
BEITRÄGE
                            0 Probleme
                            0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Write an equation that accepts a vector and calculates output
Please get started with MATLAB Fundamentals first by going throught the tutorials:https://www.mathworks.com/help/matlab/getting-...
mehr als 3 Jahre vor | 0
Addition, Subtraction, Multiplication & Division of Matrices
The addition of matrices is one of the basic operations that is performed on matrices. Two or more matrices of the same order ca...
mehr als 3 Jahre vor | 0
area of triangle,u=[5 -5 -2] ; v=[-3 5 -3]; w=[-1 5 1];
We can use heron's formula for the purpose. Area=square root of(s*(s-a)*(s-b)*(s-c)) where s=semi-pereimeter=(a+b+c)/2 where ...
mehr als 3 Jahre vor | 2
Write a MATLAB code to find the L and U decompostions of a matrix
To decompose a matrix into lower and upper and lower triangular matrices,we can use the following syntax: [LU,P] = step(lu,A) ...
mehr als 3 Jahre vor | 0
Ask for matlab equations
We can easily take the input from the user using prompt command. After taking the input for x and y we can display the sum and ...
mehr als 3 Jahre vor | 0
Write a function that prompts the User for a positive integer n
We can use a simple if-else conditional check in MATLAB to implement the scenario described. At first,we take the input value o...
mehr als 3 Jahre vor | 0
How do I create the following matrices using a for loop
Since the dimensions of each matrix is 5*5,we can easily create the matrices without any for loop. However ,since we are specif...
mehr als 3 Jahre vor | 0
Summation with FOR Loop
We can calculate the sum using a simple for loop in MATLAB. We take the input value of n from the user. After taking the input...
mehr als 3 Jahre vor | 0
if-else statement question
We can simulate the whole scenario. At first we must take the input for the name of the customer,his address,his amount of purc...
mehr als 3 Jahre vor | 0
How do i write that matrix?(with zeros,ones,eye)
The above matrix can be created in a lot of different ways. An interesting observation for the above matrix which we require to...
mehr als 3 Jahre vor | 0
