Feeds
提问
Error using input Unrecognized function or variable 'x'. Error in untitled (line 2) f1=input('fonksiyonu giriniz: ')
clc; fprintf('SECANT METODU\n') u = input('fonksiyonu girin: ','s'); f = str2func(['@(x)' u]); x0=input('x0 noktasını girini...
4 years 前 | 1 个回答 | 0
1
个回答提问
Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error. To construct matrices, use brackets instead of parenthe
>> clc; clear all; E=input('Epsilon değerini giriniz E: '); max=20; fstr = input('Fonksiyon değerini giriniz f(x):', 's'); s...
4 years 前 | 1 个回答 | 0
1
个回答提问
I want it to find the solution with the Newton Raphson method with the function entered, but it gives an error and when I copy and paste the codes on another page, it pastes d
clc; clear all; syms x E=input('Epsilon değerini giriniz E: '); max=20; x0=input('X0 değerini giriniz -> '); f(x)=inp...
4 years 前 | 1 个回答 | 0