blob: 23c6da17762a5da0cb94beadf97a21f74fd12ade (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Example 4_1
clc;clear;funcprot(0);
//Given values
// u=0.5+0.8x
// v=1.5-0.8y
//Calculation
//Since V is a vector, all its components must equal zero in order for V itself to be zero.
x=-0.5/0.8;
y=-1.5/-0.8;
disp(y,x,"Stagnation point x&y in m");
|