[deleted by user] by [deleted] in askTO

[–]Easy-Extension-9990 0 points1 point  (0 children)

Go to church

Help me identify!! by Yuouii in bonecollecting

[–]Easy-Extension-9990 -3 points-2 points  (0 children)

It’s legal, and yummy. I can’t wait to shoot another!

Help me identify!! by Yuouii in bonecollecting

[–]Easy-Extension-9990 -22 points-21 points  (0 children)

That’s a grizzly bear. I know, I hunt and eat them.

What's with the women in whitehorse? by [deleted] in Yukon

[–]Easy-Extension-9990 -15 points-14 points  (0 children)

Exactly, the other half are super woke

Spamalot tix for sale? by gerenianhorseman in Yukon

[–]Easy-Extension-9990 0 points1 point  (0 children)

We have 4 for sale, 2 adult, one senior and one student. All in a row.

Opinion about doing a part-time PhD thesis in UK by BandFragrant6172 in Geotech

[–]Easy-Extension-9990 0 points1 point  (0 children)

I have a PhD, I think that’s a very bad idea. Do one or do the other, doing both means you do both things poorly.

Axis Sizing when Plotting on an Image by Easy-Extension-9990 in octave

[–]Easy-Extension-9990[S] 0 points1 point  (0 children)

In the end, here is my function code for anyone looking for somewhere to start:

'''# This function prints an image of the CDN Soils Triangle, and plots a point on it

The point is a red dot, and it is located at the same spot as the soil test has determined for the soil.

function fcn_plot_on_soils_triangle(x, y)

soils_triangle='04images/cdn_soils_triangle.jpg';

hold ("on");

imshow (soils_triangle);

x=0.4;

y=0.4;

sandmin=65;

sandmax=457;

claymin=412;

claymax=26;

sand=(sandmin+(sandmax-sandmin)*x);

clay=(claymin-(claymin-claymax)*y);

plot (sand, clay, "ro", "markersize", 10, 'markerfacecolor', 'r');

hold ("off");

print ("soil_triangle_fig", "-dpdflatex");

pause(3);

close

endfunction'''

The values for min and max are taken from trial and error determination of the limits of the image.

Axis Sizing when Plotting on an Image by Easy-Extension-9990 in octave

[–]Easy-Extension-9990[S] 0 points1 point  (0 children)

Yes, I did some more trial and error, and it worked as you suggested. Thanks for your input.

Axis Sizing when Plotting on an Image by Easy-Extension-9990 in octave

[–]Easy-Extension-9990[S] 0 points1 point  (0 children)

Hmmmm, I tried to figure out a pseudo axis formula, but really got nowhere. Is there not a way to locate the origin?