Author |
Message |
Topic: %sh with vertical scrollbars within %ps |
Kenneth_Smith
Replies: 3
Views: 58
|
Forum: ClearWin+ Posted: Fri Jun 24, 2022 1:01 pm Subject: |
Plan C evolved last night. Looks like a property sheet but it is not. I don't think I have ever used %aw before.
Posting this as others may find it helpful at some time.
module my_ps
use clrw ... |
Topic: %sh with vertical scrollbars within %ps |
Kenneth_Smith
Replies: 3
Views: 58
|
Forum: ClearWin+ Posted: Thu Jun 23, 2022 9:12 pm Subject: |
Paul, Thanks, I think I will adopt plan b for the time being - a smaller font size (that might just be sufficient for the time being).
Ken |
Topic: %sh with vertical scrollbars within %ps |
Kenneth_Smith
Replies: 3
Views: 58
|
Forum: ClearWin+ Posted: Thu Jun 23, 2022 1:17 pm Subject: %sh with vertical scrollbars within %ps |
I have been using %ps to collate a number of individual sheets %sh, and this has proved to be a very useful approach for both data input and presenting results.
One of my data input sheets is getti ... |
Topic: Highlighting If / elseif construct |
Kenneth_Smith
Replies: 0
Views: 107
|
Forum: Plato Posted: Tue Jun 14, 2022 10:07 am Subject: Highlighting If / elseif construct |
Does anybody else occasionally see the appearance of a strange character when editing IF / ELSE IF constructions?
For example, at line 509 in the attached, immediately after changing "else&quo ... |
Topic: Complex intrinsics with kind=3 arguments |
Kenneth_Smith
Replies: 4
Views: 286
|
Forum: Support Posted: Wed Jun 08, 2022 10:26 am Subject: |
Paul,
Looking at the "old" intrinsics, for complex and extended precision z, log(z) and exp(z) have been implemented but not sqrt(z).
print*, log(cmplx(0.0,1.0,kind=3)) ... |
Topic: Complex intrinsics with kind=3 arguments |
Kenneth_Smith
Replies: 4
Views: 286
|
Forum: Support Posted: Mon Jun 06, 2022 11:55 am Subject: |
Thanks Paul, I know what I need to do now. I did not think to test the real value case. Ken |
Topic: Complex intrinsics with kind=3 arguments |
Kenneth_Smith
Replies: 4
Views: 286
|
Forum: Support Posted: Mon Jun 06, 2022 10:18 am Subject: Complex intrinsics with kind=3 arguments |
It appears that the support for complex intrinsics such as COSH(x) introduced fairly recently does not include support for their use when X is a kind=3 variable.
For the sample below, the symbol CX ... |
Topic: Error in list-directed read |
Kenneth_Smith
Replies: 8
Views: 865
|
Forum: Support Posted: Fri May 06, 2022 10:33 pm Subject: |
I recently saw an ICL 1900 running in the plant control centre at a steelworks in South Wales. Not as old as some of the electrical equipment on that site which dates back to the 1950s. |
Topic: No Saturdays without devilry |
Kenneth_Smith
Replies: 19
Views: 3144
|
Forum: ClearWin+ Posted: Sun Nov 28, 2021 3:29 pm Subject: |
Definitely some devilry here Dan.
Changing the value returned by the call back to 1 rather than 2 does not help.
Printing the values immediately before the calls to window_update@ returns the ex ... |
Topic: Limitation of number of plots in %PL |
Kenneth_Smith
Replies: 30
Views: 15732
|
Forum: ClearWin+ Posted: Wed Oct 20, 2021 2:02 pm Subject: |
Dan,
This demonstrates where I think the issue may be:
character(len=19) str1, str2
print*
print*, 'cyan is rgb(0,255,255) which is HEX #00FFFF'
print*
print*, 'yellow is ... |
Topic: Limitation of number of plots in %PL |
Kenneth_Smith
Replies: 30
Views: 15732
|
Forum: ClearWin+ Posted: Tue Oct 19, 2021 7:59 pm Subject: |
Dan wrote
the last color is red, not blue.
Can you show us how you converted the (r,g,b) triplet to hex?
Or try using this approach:
module dan_test_mod
use clrwin
implicit none
integer, ... |
Topic: Limitation of number of plots in %PL |
Kenneth_Smith
Replies: 30
Views: 15732
|
Forum: ClearWin+ Posted: Tue Oct 12, 2021 5:59 pm Subject: |
Dan,
For the problem you describe, I would check that each :
CALL winop@("%pl[colour=#110011]") etc
is in the correct order for graphs 1 to N. |
Topic: Limitation of number of plots in %PL |
Kenneth_Smith
Replies: 30
Views: 15732
|
Forum: ClearWin+ Posted: Wed Oct 06, 2021 7:54 pm Subject: |
Dan,
This works without calls to winop@ before the i=winio@ function call:
USE mswin
INTEGER,PARAMETER:: Nx=11, Nt=12
DOUBLE PRECISION Xmp(Nx,Nt),Ymp(Nx,N ... |
Topic: Limitation of number of plots in %PL |
Kenneth_Smith
Replies: 30
Views: 15732
|
Forum: ClearWin+ Posted: Wed Oct 06, 2021 12:59 pm Subject: |
Dan,
Here is a modification to your second example that now works as expected.
Ken
USE mswin
INTEGER,PARAMETER:: Nx=11, Nt=12
DOUBLE PRECISION Xmp(Nx,Nt) ... |
Topic: Limitation of number of plots in %PL |
Kenneth_Smith
Replies: 30
Views: 15732
|
Forum: ClearWin+ Posted: Tue Oct 05, 2021 10:13 am Subject: |
Dan,
This should work, the thing to remember is that if n_graphs > 10 and more than one related call is made to winop@ then the value of n_graphs must be included in the first call to winop@. |
|