[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Octave-bug-tracker] [bug #65361] patch and compos error
From: |
Liang Tang |
Subject: |
[Octave-bug-tracker] [bug #65361] patch and compos error |
Date: |
Sat, 24 Feb 2024 17:31:13 -0500 (EST) |
URL:
<https://savannah.gnu.org/bugs/?65361>
Summary: patch and compos error
Group: GNU Octave
Submitter: lt1234
Submitted: Sat 24 Feb 2024 10:31:13 PM UTC
Category: Octave Function
Severity: 3 - Normal
Priority: 5 - Normal
Item Group: Unexpected Error or Warning
Status: None
Assigned to: None
Originator Name: lt1234
Originator Email:
Open/Closed: Open
Release: 8.2.0
Discussion Lock: Any
Operating System: Microsoft Windows
Fixed Release: None
Planned Release: None
_______________________________________________________
Follow-up Comments:
-------------------------------------------------------
Date: Sat 24 Feb 2024 10:31:13 PM UTC By: Liang Tang <lt1234>
Hi,
I got an error for the example below. If the patch is replaced with a fill3,
no error is issued. Thanks.
P0=[6 3 -4
0 -2 -4
0 -6 6
6 -6 3];
% with patch
figure; ax2=axes;
patch(ax2,P0(:,1), P0(:,2), P0(:,3), 'r');
hold on; xlabel('x'); ylabel('y');
campos, campos(campos-1e-12); campos
error: set: "cameraviewangle" must be finite
error: called from
campos at line 104 column 8
% no patch, no error message
figure; ax2=axes;
fill3(ax2,P0(:,1), P0(:,2), P0(:,3), 'r');
hold on; xlabel('x'); ylabel('y');
campos, campos(campos-1e-12); campos
_______________________________________________________
Reply to this item at:
<https://savannah.gnu.org/bugs/?65361>
_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/
- [Octave-bug-tracker] [bug #65361] patch and compos error,
Liang Tang <=