trying to plot a harmonic function, but i keep getting an fplot error.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
layth ibrahim
am 2 Nov. 2021
Beantwortet: Star Strider
am 2 Nov. 2021
code:
clear all
clc
syms x y
u = x^2 - y^2;
for c = 2:2:20
result(:,c) = solve(u == c);
end
fplot(result)
error:
Operands to the logical and (&&) and or (||) operators must be convertible to logical scalar values.
Error in fplot (line 119)
~all(feval_internal(symengine,'symobj::map',formula(fn{k}),'testtype','Type::Arithmetical'))
0 Kommentare
Akzeptierte Antwort
Star Strider
am 2 Nov. 2021
Try this —
syms x y
u = x^2 - y^2;
figure
hold on
for c = 2:2:20
result = solve(u == c);
fplot(result)
end
hold off
grid
.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
